/** * @public * @enum */ export declare const EngineType: { readonly ACTIVEMQ: "ACTIVEMQ"; readonly RABBITMQ: "RABBITMQ"; }; /** * @public */ export type EngineType = (typeof EngineType)[keyof typeof EngineType]; /** * @public * @enum */ export declare const BrokerStorageType: { readonly EBS: "EBS"; readonly EFS: "EFS"; }; /** * @public */ export type BrokerStorageType = (typeof BrokerStorageType)[keyof typeof BrokerStorageType]; /** * @public * @enum */ export declare const DeploymentMode: { readonly ACTIVE_STANDBY_MULTI_AZ: "ACTIVE_STANDBY_MULTI_AZ"; readonly CLUSTER_MULTI_AZ: "CLUSTER_MULTI_AZ"; readonly SINGLE_INSTANCE: "SINGLE_INSTANCE"; }; /** * @public */ export type DeploymentMode = (typeof DeploymentMode)[keyof typeof DeploymentMode]; /** * @public * @enum */ export declare const BrokerState: { readonly CREATION_FAILED: "CREATION_FAILED"; readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS"; readonly CRITICAL_ACTION_REQUIRED: "CRITICAL_ACTION_REQUIRED"; readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS"; readonly REBOOT_IN_PROGRESS: "REBOOT_IN_PROGRESS"; readonly REPLICA: "REPLICA"; readonly RUNNING: "RUNNING"; }; /** * @public */ export type BrokerState = (typeof BrokerState)[keyof typeof BrokerState]; /** * @public * @enum */ export declare const AuthenticationStrategy: { readonly CONFIG_MANAGED: "CONFIG_MANAGED"; readonly LDAP: "LDAP"; readonly SIMPLE: "SIMPLE"; }; /** * @public */ export type AuthenticationStrategy = (typeof AuthenticationStrategy)[keyof typeof AuthenticationStrategy]; /** * @public * @enum */ export declare const SanitizationWarningReason: { readonly DISALLOWED_ATTRIBUTE_REMOVED: "DISALLOWED_ATTRIBUTE_REMOVED"; readonly DISALLOWED_ELEMENT_REMOVED: "DISALLOWED_ELEMENT_REMOVED"; readonly INVALID_ATTRIBUTE_VALUE_REMOVED: "INVALID_ATTRIBUTE_VALUE_REMOVED"; }; /** * @public */ export type SanitizationWarningReason = (typeof SanitizationWarningReason)[keyof typeof SanitizationWarningReason]; /** * @public * @enum */ export declare const SharedResourceErrorCode: { readonly AZ_MISMATCH: "AZ_MISMATCH"; readonly INTERNAL_ERROR: "INTERNAL_ERROR"; readonly INVITE_FAILED: "INVITE_FAILED"; readonly QUOTA_EXCEEDED: "QUOTA_EXCEEDED"; readonly RESOURCE_CONFIGURATION_NOT_FOUND: "RESOURCE_CONFIGURATION_NOT_FOUND"; readonly SETUP_INCOMPLETE: "SETUP_INCOMPLETE"; readonly SHARE_NOT_FOUND: "SHARE_NOT_FOUND"; }; /** * @public */ export type SharedResourceErrorCode = (typeof SharedResourceErrorCode)[keyof typeof SharedResourceErrorCode]; /** * @public * @enum */ export declare const SharedResourceStatus: { readonly AVAILABLE: "AVAILABLE"; readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS"; readonly ERROR: "ERROR"; readonly PENDING_CREATE: "PENDING_CREATE"; readonly PENDING_DELETE: "PENDING_DELETE"; readonly SETUP_IN_PROGRESS: "SETUP_IN_PROGRESS"; }; /** * @public */ export type SharedResourceStatus = (typeof SharedResourceStatus)[keyof typeof SharedResourceStatus]; /** * @public * @enum */ export declare const SharedResourceType: { readonly RESOURCE: "RESOURCE"; readonly RESOURCE_SHARE: "RESOURCE_SHARE"; }; /** * @public */ export type SharedResourceType = (typeof SharedResourceType)[keyof typeof SharedResourceType]; /** * @public * @enum */ export declare const ChangeType: { readonly CREATE: "CREATE"; readonly DELETE: "DELETE"; readonly UPDATE: "UPDATE"; }; /** * @public */ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType]; /** * @public * @enum */ export declare const DataReplicationMode: { readonly CRDR: "CRDR"; readonly NONE: "NONE"; }; /** * @public */ export type DataReplicationMode = (typeof DataReplicationMode)[keyof typeof DataReplicationMode]; /** * @public * @enum */ export declare const DayOfWeek: { readonly FRIDAY: "FRIDAY"; readonly MONDAY: "MONDAY"; readonly SATURDAY: "SATURDAY"; readonly SUNDAY: "SUNDAY"; readonly THURSDAY: "THURSDAY"; readonly TUESDAY: "TUESDAY"; readonly WEDNESDAY: "WEDNESDAY"; }; /** * @public */ export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek]; /** * @public * @enum */ export declare const PromoteMode: { readonly FAILOVER: "FAILOVER"; readonly SWITCHOVER: "SWITCHOVER"; }; /** * @public */ export type PromoteMode = (typeof PromoteMode)[keyof typeof PromoteMode];