@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)
25 lines (24 loc) • 876 B
TypeScript
export declare const EnvironmentFederationMode: {
readonly Local: "LOCAL";
readonly Federated: "FEDERATED";
};
/**
* Federation mode used with the Environment
*/
export type EnvironmentFederationMode = (typeof EnvironmentFederationMode)[keyof typeof EnvironmentFederationMode];
export declare const EnvironmentStatus: {
readonly CreateRequested: "CREATE_REQUESTED";
readonly Creating: "CREATING";
readonly Created: "CREATED";
readonly DeleteRequested: "DELETE_REQUESTED";
readonly Deleting: "DELETING";
readonly Deleted: "DELETED";
readonly FailedCreation: "FAILED_CREATION";
readonly FailedDeletion: "FAILED_DELETION";
readonly RetryDeletion: "RETRY_DELETION";
readonly Suspended: "SUSPENDED";
};
/**
* State of the Environment
*/
export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];