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];
