/** * @public * @enum */ export declare const ClusterStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly IDLE: "IDLE"; readonly INACTIVE: "INACTIVE"; readonly PENDING_DELETE: "PENDING_DELETE"; readonly PENDING_SETUP: "PENDING_SETUP"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus]; /** * @public * @enum */ export declare const EncryptionStatus: { readonly ENABLED: "ENABLED"; readonly ENABLING: "ENABLING"; readonly KMS_KEY_INACCESSIBLE: "KMS_KEY_INACCESSIBLE"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type EncryptionStatus = (typeof EncryptionStatus)[keyof typeof EncryptionStatus]; /** * @public * @enum */ export declare const EncryptionType: { readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY"; readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY"; }; /** * @public */ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly CANNOT_PARSE: "cannotParse"; readonly DELETION_PROTECTION_ENABLED: "deletionProtectionEnabled"; readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed"; readonly OTHER: "other"; readonly UNKNOWN_OPERATION: "unknownOperation"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const StreamFormat: { readonly JSON: "JSON"; }; /** * @public */ export type StreamFormat = (typeof StreamFormat)[keyof typeof StreamFormat]; /** * @public * @enum */ export declare const StreamOrdering: { readonly UNORDERED: "UNORDERED"; }; /** * @public */ export type StreamOrdering = (typeof StreamOrdering)[keyof typeof StreamOrdering]; /** * @public * @enum */ export declare const StreamStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly IMPAIRED: "IMPAIRED"; }; /** * @public */ export type StreamStatus = (typeof StreamStatus)[keyof typeof StreamStatus]; /** * @public * @enum */ export declare const StreamFailureErrorCode: { readonly CLUSTER_CMK_INACCESSIBLE: "CLUSTER_CMK_INACCESSIBLE"; readonly INTERNAL_ERROR: "INTERNAL_ERROR"; readonly KINESIS_ACCESS_DENIED: "KINESIS_ACCESS_DENIED"; readonly KINESIS_KMS_ACCESS_DENIED: "KINESIS_KMS_ACCESS_DENIED"; readonly KINESIS_OVERSIZE_RECORD: "KINESIS_OVERSIZE_RECORD"; readonly KINESIS_STREAM_NOT_FOUND: "KINESIS_STREAM_NOT_FOUND"; readonly KINESIS_THROUGHPUT_EXCEEDED: "KINESIS_THROUGHPUT_EXCEEDED"; readonly ROLE_ACCESS_DENIED: "ROLE_ACCESS_DENIED"; }; /** * @public */ export type StreamFailureErrorCode = (typeof StreamFailureErrorCode)[keyof typeof StreamFailureErrorCode];