/** * @public * @enum */ export declare const AnalyticsMode: { readonly DISABLE: "DISABLE"; readonly ENABLE: "ENABLE"; }; /** * @public */ export type AnalyticsMode = (typeof AnalyticsMode)[keyof typeof AnalyticsMode]; /** * @public * @enum */ export declare const InputFormat: { readonly CSV: "CSV"; readonly EXCEL: "EXCEL"; readonly JSON: "JSON"; readonly ORC: "ORC"; readonly PARQUET: "PARQUET"; }; /** * @public */ export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat]; /** * @public * @enum */ export declare const Order: { readonly ASCENDING: "ASCENDING"; readonly DESCENDING: "DESCENDING"; }; /** * @public */ export type Order = (typeof Order)[keyof typeof Order]; /** * @public * @enum */ export declare const OrderedBy: { readonly LAST_MODIFIED_DATE: "LAST_MODIFIED_DATE"; }; /** * @public */ export type OrderedBy = (typeof OrderedBy)[keyof typeof OrderedBy]; /** * @public * @enum */ export declare const ParameterType: { readonly Datetime: "Datetime"; readonly Number: "Number"; readonly String: "String"; }; /** * @public */ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType]; /** * @public * @enum */ export declare const EncryptionMode: { readonly SSEKMS: "SSE-KMS"; readonly SSES3: "SSE-S3"; }; /** * @public */ export type EncryptionMode = (typeof EncryptionMode)[keyof typeof EncryptionMode]; /** * @public * @enum */ export declare const SampleMode: { readonly CUSTOM_ROWS: "CUSTOM_ROWS"; readonly FULL_DATASET: "FULL_DATASET"; }; /** * @public */ export type SampleMode = (typeof SampleMode)[keyof typeof SampleMode]; /** * @public * @enum */ export declare const LogSubscription: { readonly DISABLE: "DISABLE"; readonly ENABLE: "ENABLE"; }; /** * @public */ export type LogSubscription = (typeof LogSubscription)[keyof typeof LogSubscription]; /** * @public * @enum */ export declare const ValidationMode: { readonly CHECK_ALL: "CHECK_ALL"; }; /** * @public */ export type ValidationMode = (typeof ValidationMode)[keyof typeof ValidationMode]; /** * @public * @enum */ export declare const SampleType: { readonly FIRST_N: "FIRST_N"; readonly LAST_N: "LAST_N"; readonly RANDOM: "RANDOM"; }; /** * @public */ export type SampleType = (typeof SampleType)[keyof typeof SampleType]; /** * @public * @enum */ export declare const DatabaseOutputMode: { readonly NEW_TABLE: "NEW_TABLE"; }; /** * @public */ export type DatabaseOutputMode = (typeof DatabaseOutputMode)[keyof typeof DatabaseOutputMode]; /** * @public * @enum */ export declare const CompressionFormat: { readonly BROTLI: "BROTLI"; readonly BZIP2: "BZIP2"; readonly DEFLATE: "DEFLATE"; readonly GZIP: "GZIP"; readonly LZ4: "LZ4"; readonly LZO: "LZO"; readonly SNAPPY: "SNAPPY"; readonly ZLIB: "ZLIB"; readonly ZSTD: "ZSTD"; }; /** * @public */ export type CompressionFormat = (typeof CompressionFormat)[keyof typeof CompressionFormat]; /** * @public * @enum */ export declare const OutputFormat: { readonly AVRO: "AVRO"; readonly CSV: "CSV"; readonly GLUEPARQUET: "GLUEPARQUET"; readonly JSON: "JSON"; readonly ORC: "ORC"; readonly PARQUET: "PARQUET"; readonly TABLEAUHYPER: "TABLEAUHYPER"; readonly XML: "XML"; }; /** * @public */ export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat]; /** * @public * @enum */ export declare const ThresholdType: { readonly GREATER_THAN: "GREATER_THAN"; readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL"; readonly LESS_THAN: "LESS_THAN"; readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL"; }; /** * @public */ export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType]; /** * @public * @enum */ export declare const ThresholdUnit: { readonly COUNT: "COUNT"; readonly PERCENTAGE: "PERCENTAGE"; }; /** * @public */ export type ThresholdUnit = (typeof ThresholdUnit)[keyof typeof ThresholdUnit]; /** * @public * @enum */ export declare const Source: { readonly DATABASE: "DATABASE"; readonly DATACATALOG: "DATA-CATALOG"; readonly S3: "S3"; }; /** * @public */ export type Source = (typeof Source)[keyof typeof Source]; /** * @public * @enum */ export declare const JobType: { readonly PROFILE: "PROFILE"; readonly RECIPE: "RECIPE"; }; /** * @public */ export type JobType = (typeof JobType)[keyof typeof JobType]; /** * @public * @enum */ export declare const JobRunState: { readonly FAILED: "FAILED"; readonly RUNNING: "RUNNING"; readonly STARTING: "STARTING"; readonly STOPPED: "STOPPED"; readonly STOPPING: "STOPPING"; readonly SUCCEEDED: "SUCCEEDED"; readonly TIMEOUT: "TIMEOUT"; }; /** * @public */ export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState]; /** * @public * @enum */ export declare const SessionStatus: { readonly ASSIGNED: "ASSIGNED"; readonly FAILED: "FAILED"; readonly INITIALIZING: "INITIALIZING"; readonly PROVISIONING: "PROVISIONING"; readonly READY: "READY"; readonly RECYCLING: "RECYCLING"; readonly ROTATING: "ROTATING"; readonly TERMINATED: "TERMINATED"; readonly TERMINATING: "TERMINATING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];