/** * @public * @enum */ export declare const FailoverStatus: { readonly CANCELLING: "cancelling"; readonly FAILING_OVER: "failing-over"; readonly PENDING: "pending"; }; /** * @public */ export type FailoverStatus = (typeof FailoverStatus)[keyof typeof FailoverStatus]; /** * @public * @enum */ export declare const GlobalClusterMemberSynchronizationStatus: { readonly CONNECTED: "connected"; readonly PENDING_RESYNC: "pending-resync"; }; /** * @public */ export type GlobalClusterMemberSynchronizationStatus = (typeof GlobalClusterMemberSynchronizationStatus)[keyof typeof GlobalClusterMemberSynchronizationStatus]; /** * @public * @enum */ export declare const ApplyMethod: { readonly immediate: "immediate"; readonly pending_reboot: "pending-reboot"; }; /** * @public */ export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod]; /** * @public * @enum */ export declare const SourceType: { readonly db_cluster: "db-cluster"; readonly db_cluster_snapshot: "db-cluster-snapshot"; readonly db_instance: "db-instance"; readonly db_parameter_group: "db-parameter-group"; readonly db_security_group: "db-security-group"; readonly db_snapshot: "db-snapshot"; }; /** * @public */ export type SourceType = (typeof SourceType)[keyof typeof SourceType];