Interface ResourceTransformationArgs

ResourceTransformationArgs is the argument bag passed to a resource transformation.

interface ResourceTransformationArgs {
    name: string;
    opts: ResourceOptions;
    props: Inputs;
    resource: Resource;
    type: string;
}

Properties

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.

resource: Resource

The Resource instance that is being transformed.

type: string

The type of the Resource.

Generated using TypeDoc