@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)
21 lines (20 loc) • 721 B
TypeScript
export declare const ResourceShareFeatureSet: {
readonly CreatedFromPolicy: "CREATED_FROM_POLICY";
readonly PromotingToStandard: "PROMOTING_TO_STANDARD";
readonly Standard: "STANDARD";
};
/**
* The feature set of the resource share.
*/
export type ResourceShareFeatureSet = (typeof ResourceShareFeatureSet)[keyof typeof ResourceShareFeatureSet];
export declare const ResourceShareStatus: {
readonly Pending: "PENDING";
readonly Active: "ACTIVE";
readonly Failed: "FAILED";
readonly Deleting: "DELETING";
readonly Deleted: "DELETED";
};
/**
* The current status of the resource share.
*/
export type ResourceShareStatus = (typeof ResourceShareStatus)[keyof typeof ResourceShareStatus];