Interface ResourceTransformResult

ResourceTransformResult is the result that must be returned by a resource transformation callback. It includes new values to use for the props and opts of the Resource in place of the originally provided values.

interface ResourceTransformResult {
    opts: ResourceOptions;
    props: Inputs;
}

Properties

Properties

The new resource options to use in place of the original opts

props: Inputs

The new properties to use in place of the original props

Generated using TypeDoc