@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)
28 lines (27 loc) • 1.12 kB
TypeScript
export declare const BucketRuleStatus: {
readonly Enabled: "Enabled";
readonly Disabled: "Disabled";
};
/**
* If `Enabled` , the rule is currently being applied. If `Disabled` , the rule is not currently being applied.
*/
export type BucketRuleStatus = (typeof BucketRuleStatus)[keyof typeof BucketRuleStatus];
export declare const EndpointAccessType: {
readonly CustomerOwnedIp: "CustomerOwnedIp";
readonly Private: "Private";
};
/**
* The type of access for the on-premise network connectivity for the Outpost endpoint. To access endpoint from an on-premises network, you must specify the access type and provide the customer owned Ipv4 pool.
*/
export type EndpointAccessType = (typeof EndpointAccessType)[keyof typeof EndpointAccessType];
export declare const EndpointStatus: {
readonly Available: "Available";
readonly Pending: "Pending";
readonly Deleting: "Deleting";
readonly CreateFailed: "Create_Failed";
readonly DeleteFailed: "Delete_Failed";
};
/**
* The status of the endpoint.
*/
export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];