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

True if the resource is a custom resource, false if it is a 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