Interface ResourceTransformArgs

ResourceTransformArgs is the argument bag passed to a resource transform.

interface ResourceTransformArgs {
    custom: boolean;
    name: string;
    opts: ResourceOptions;
    props: Inputs;
    type: string;
}

Properties

custom: boolean

If the resource is a custom or component resource.

name: string

The name of the Resource.

The original resource options passed to the Resource constructor.

props: Inputs

The original properties passed to the Resource constructor.

type: string

The type of the Resource.

Generated using TypeDoc