@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)
33 lines (32 loc) • 1.52 kB
TypeScript
export declare const ClusterDataTieringStatus: {
readonly True: "true";
readonly False: "false";
};
export type ClusterDataTieringStatus = (typeof ClusterDataTieringStatus)[keyof typeof ClusterDataTieringStatus];
export declare const ClusterSupportedIpDiscoveryTypes: {
readonly Ipv4: "ipv4";
readonly Ipv6: "ipv6";
};
export type ClusterSupportedIpDiscoveryTypes = (typeof ClusterSupportedIpDiscoveryTypes)[keyof typeof ClusterSupportedIpDiscoveryTypes];
export declare const ClusterSupportedNetworkTypes: {
readonly Ipv4: "ipv4";
readonly Ipv6: "ipv6";
readonly DualStack: "dual_stack";
};
export type ClusterSupportedNetworkTypes = (typeof ClusterSupportedNetworkTypes)[keyof typeof ClusterSupportedNetworkTypes];
export declare const MultiRegionClusterUpdateStrategy: {
readonly Coordinated: "COORDINATED";
readonly Uncoordinated: "UNCOORDINATED";
};
/**
* An enum string value that determines the update strategy for scaling. Possible values are 'COORDINATED' and 'UNCOORDINATED'. Default is 'COORDINATED'.
*/
export type MultiRegionClusterUpdateStrategy = (typeof MultiRegionClusterUpdateStrategy)[keyof typeof MultiRegionClusterUpdateStrategy];
export declare const UserAuthenticationModePropertiesType: {
readonly Password: "password";
readonly Iam: "iam";
};
/**
* Type of authentication strategy for this user.
*/
export type UserAuthenticationModePropertiesType = (typeof UserAuthenticationModePropertiesType)[keyof typeof UserAuthenticationModePropertiesType];