@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)
41 lines (40 loc) • 1.44 kB
TypeScript
export declare const GlobalReplicationGroupMemberRole: {
readonly Primary: "PRIMARY";
readonly Secondary: "SECONDARY";
};
/**
* Indicates the role of the member, primary or secondary.
*/
export type GlobalReplicationGroupMemberRole = (typeof GlobalReplicationGroupMemberRole)[keyof typeof GlobalReplicationGroupMemberRole];
export declare const ServerlessCacheDataStorageUnit: {
readonly Gb: "GB";
};
/**
* The unit of cached data capacity of the Serverless Cache.
*/
export type ServerlessCacheDataStorageUnit = (typeof ServerlessCacheDataStorageUnit)[keyof typeof ServerlessCacheDataStorageUnit];
export declare const UserAuthenticationModePropertiesType: {
readonly Password: "password";
readonly NoPasswordRequired: "no-password-required";
readonly Iam: "iam";
};
/**
* Authentication Type
*/
export type UserAuthenticationModePropertiesType = (typeof UserAuthenticationModePropertiesType)[keyof typeof UserAuthenticationModePropertiesType];
export declare const UserEngine: {
readonly Redis: "redis";
readonly Valkey: "valkey";
};
/**
* The target cache engine for the user.
*/
export type UserEngine = (typeof UserEngine)[keyof typeof UserEngine];
export declare const UserGroupEngine: {
readonly Redis: "redis";
readonly Valkey: "valkey";
};
/**
* The target cache engine for the user group.
*/
export type UserGroupEngine = (typeof UserGroupEngine)[keyof typeof UserGroupEngine];