Interface CreateResult<Outputs>

CreateResult represents the results of a call to ResourceProvider.create.

interface CreateResult<Outputs> {
    id: string;
    outs?: Outputs;
}

Type Parameters

  • Outputs = any

Properties

Properties

id: string

The ID of the created resource.

outs?: Outputs

Any properties that were computed during creation.

Generated using TypeDoc