/** * @public * @enum */ export declare const BackupState: { readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly PENDING_DELETION: "PENDING_DELETION"; readonly READY: "READY"; }; /** * @public */ export type BackupState = (typeof BackupState)[keyof typeof BackupState]; /** * @public * @enum */ export declare const ClusterMode: { readonly FIPS: "FIPS"; readonly NON_FIPS: "NON_FIPS"; }; /** * @public */ export type ClusterMode = (typeof ClusterMode)[keyof typeof ClusterMode]; /** * @public * @enum */ export declare const BackupPolicy: { readonly DEFAULT: "DEFAULT"; }; /** * @public */ export type BackupPolicy = (typeof BackupPolicy)[keyof typeof BackupPolicy]; /** * @public * @enum */ export declare const BackupRetentionType: { readonly DAYS: "DAYS"; }; /** * @public */ export type BackupRetentionType = (typeof BackupRetentionType)[keyof typeof BackupRetentionType]; /** * @public * @enum */ export declare const NetworkType: { readonly DUALSTACK: "DUALSTACK"; readonly IPV4: "IPV4"; }; /** * @public */ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType]; /** * @public * @enum */ export declare const HsmState: { readonly ACTIVE: "ACTIVE"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DEGRADED: "DEGRADED"; readonly DELETED: "DELETED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; }; /** * @public */ export type HsmState = (typeof HsmState)[keyof typeof HsmState]; /** * @public * @enum */ export declare const ClusterState: { readonly ACTIVE: "ACTIVE"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DEGRADED: "DEGRADED"; readonly DELETED: "DELETED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly INITIALIZED: "INITIALIZED"; readonly INITIALIZE_IN_PROGRESS: "INITIALIZE_IN_PROGRESS"; readonly MODIFY_IN_PROGRESS: "MODIFY_IN_PROGRESS"; readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS"; readonly UNINITIALIZED: "UNINITIALIZED"; readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS"; }; /** * @public */ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];