/** * @public * @enum */ export declare const ThroughputMode: { readonly PAY_PER_REQUEST: "PAY_PER_REQUEST"; readonly PROVISIONED: "PROVISIONED"; }; /** * @public */ export type ThroughputMode = (typeof ThroughputMode)[keyof typeof ThroughputMode]; /** * @public * @enum */ export declare const CdcPropagateTags: { readonly NONE: "NONE"; readonly TABLE: "TABLE"; }; /** * @public */ export type CdcPropagateTags = (typeof CdcPropagateTags)[keyof typeof CdcPropagateTags]; /** * @public * @enum */ export declare const CdcStatus: { readonly DISABLED: "DISABLED"; readonly DISABLING: "DISABLING"; readonly ENABLED: "ENABLED"; readonly ENABLING: "ENABLING"; }; /** * @public */ export type CdcStatus = (typeof CdcStatus)[keyof typeof CdcStatus]; /** * @public * @enum */ export declare const ViewType: { readonly KEYS_ONLY: "KEYS_ONLY"; readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES"; readonly NEW_IMAGE: "NEW_IMAGE"; readonly OLD_IMAGE: "OLD_IMAGE"; }; /** * @public */ export type ViewType = (typeof ViewType)[keyof typeof ViewType]; /** * @public * @enum */ export declare const ClientSideTimestampsStatus: { readonly ENABLED: "ENABLED"; }; /** * @public */ export type ClientSideTimestampsStatus = (typeof ClientSideTimestampsStatus)[keyof typeof ClientSideTimestampsStatus]; /** * @public * @enum */ export declare const SortOrder: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; /** * @public */ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; /** * @public * @enum */ export declare const Rs: { readonly MULTI_REGION: "MULTI_REGION"; readonly SINGLE_REGION: "SINGLE_REGION"; }; /** * @public */ export type Rs = (typeof Rs)[keyof typeof Rs]; /** * @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 PointInTimeRecoveryStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type PointInTimeRecoveryStatus = (typeof PointInTimeRecoveryStatus)[keyof typeof PointInTimeRecoveryStatus]; /** * @public * @enum */ export declare const TimeToLiveStatus: { readonly ENABLED: "ENABLED"; }; /** * @public */ export type TimeToLiveStatus = (typeof TimeToLiveStatus)[keyof typeof TimeToLiveStatus]; /** * @public * @enum */ export declare const KeyspaceStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type KeyspaceStatus = (typeof KeyspaceStatus)[keyof typeof KeyspaceStatus]; /** * @public * @enum */ export declare const TableStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS"; readonly RESTORING: "RESTORING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus]; /** * @public * @enum */ export declare const WarmThroughputStatus: { readonly AVAILABLE: "AVAILABLE"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type WarmThroughputStatus = (typeof WarmThroughputStatus)[keyof typeof WarmThroughputStatus]; /** * @public * @enum */ export declare const TypeStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; readonly RESTORING: "RESTORING"; }; /** * @public */ export type TypeStatus = (typeof TypeStatus)[keyof typeof TypeStatus];