/** * @public * @enum */ export declare const BatchLoadDataFormat: { readonly CSV: "CSV"; }; /** * @public */ export type BatchLoadDataFormat = (typeof BatchLoadDataFormat)[keyof typeof BatchLoadDataFormat]; /** * @public * @enum */ export declare const BatchLoadStatus: { readonly CREATED: "CREATED"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly PENDING_RESUME: "PENDING_RESUME"; readonly PROGRESS_STOPPED: "PROGRESS_STOPPED"; readonly SUCCEEDED: "SUCCEEDED"; }; /** * @public */ export type BatchLoadStatus = (typeof BatchLoadStatus)[keyof typeof BatchLoadStatus]; /** * @public * @enum */ export declare const MeasureValueType: { readonly BIGINT: "BIGINT"; readonly BOOLEAN: "BOOLEAN"; readonly DOUBLE: "DOUBLE"; readonly MULTI: "MULTI"; readonly TIMESTAMP: "TIMESTAMP"; readonly VARCHAR: "VARCHAR"; }; /** * @public */ export type MeasureValueType = (typeof MeasureValueType)[keyof typeof MeasureValueType]; /** * @public * @enum */ export declare const ScalarMeasureValueType: { readonly BIGINT: "BIGINT"; readonly BOOLEAN: "BOOLEAN"; readonly DOUBLE: "DOUBLE"; readonly TIMESTAMP: "TIMESTAMP"; readonly VARCHAR: "VARCHAR"; }; /** * @public */ export type ScalarMeasureValueType = (typeof ScalarMeasureValueType)[keyof typeof ScalarMeasureValueType]; /** * @public * @enum */ export declare const TimeUnit: { readonly MICROSECONDS: "MICROSECONDS"; readonly MILLISECONDS: "MILLISECONDS"; readonly NANOSECONDS: "NANOSECONDS"; readonly SECONDS: "SECONDS"; }; /** * @public */ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit]; /** * @public * @enum */ export declare const S3EncryptionOption: { readonly SSE_KMS: "SSE_KMS"; readonly SSE_S3: "SSE_S3"; }; /** * @public */ export type S3EncryptionOption = (typeof S3EncryptionOption)[keyof typeof S3EncryptionOption]; /** * @public * @enum */ export declare const PartitionKeyEnforcementLevel: { readonly OPTIONAL: "OPTIONAL"; readonly REQUIRED: "REQUIRED"; }; /** * @public */ export type PartitionKeyEnforcementLevel = (typeof PartitionKeyEnforcementLevel)[keyof typeof PartitionKeyEnforcementLevel]; /** * @public * @enum */ export declare const PartitionKeyType: { readonly DIMENSION: "DIMENSION"; readonly MEASURE: "MEASURE"; }; /** * @public */ export type PartitionKeyType = (typeof PartitionKeyType)[keyof typeof PartitionKeyType]; /** * @public * @enum */ export declare const TableStatus: { readonly ACTIVE: "ACTIVE"; readonly DELETING: "DELETING"; readonly RESTORING: "RESTORING"; }; /** * @public */ export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus]; /** * @public * @enum */ export declare const DimensionValueType: { readonly VARCHAR: "VARCHAR"; }; /** * @public */ export type DimensionValueType = (typeof DimensionValueType)[keyof typeof DimensionValueType];