@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)
12 lines (11 loc) • 360 B
TypeScript
export declare const DatastoreStatus: {
readonly Creating: "CREATING";
readonly CreateFailed: "CREATE_FAILED";
readonly Active: "ACTIVE";
readonly Deleting: "DELETING";
readonly Deleted: "DELETED";
};
/**
* A string to denote the Datastore's state.
*/
export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];