DockerBuildImageIdentityArgs
interface DockerBuildImageIdentityArgs {
identity: string;
}Stable identity for a Docker image build.
Example
CODE
const identity: DockerBuildImageIdentityArgs = {
identity: 'payments-image',
};Properties
identity: string
Stable identity segment used to derive Pulumi logical names for this component and its child image resource.
Remarks
Must be a plain, non-empty synchronous string (not a pulumi.Input, pulumi.Output, or promise-derived value), and must contain supported characters that survive sanitisation to a non-empty segment. Keep this value stable for the lifetime of the component instance because changing it changes logical names and forces replacement.