@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
13 lines (12 loc) • 497 B
TypeScript
export declare const DeploymentStatus: {
readonly Completed: "COMPLETED";
readonly Creating: "CREATING";
readonly DeleteInProgress: "DELETE_IN_PROGRESS";
readonly DeleteInitiating: "DELETE_INITIATING";
readonly DeleteFailed: "DELETE_FAILED";
readonly Deleted: "DELETED";
readonly Failed: "FAILED";
readonly InProgress: "IN_PROGRESS";
readonly Validating: "VALIDATING";
};
export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];