/** * @public * @enum */ export declare const RecordFormatType: { readonly CSV: "CSV"; readonly JSON: "JSON"; }; /** * @public */ export type RecordFormatType = (typeof RecordFormatType)[keyof typeof RecordFormatType]; /** * @public * @enum */ export declare const InputStartingPosition: { readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT"; readonly NOW: "NOW"; readonly TRIM_HORIZON: "TRIM_HORIZON"; }; /** * @public */ export type InputStartingPosition = (typeof InputStartingPosition)[keyof typeof InputStartingPosition]; /** * @public * @enum */ export declare const CodeContentType: { readonly PLAINTEXT: "PLAINTEXT"; readonly ZIPFILE: "ZIPFILE"; }; /** * @public */ export type CodeContentType = (typeof CodeContentType)[keyof typeof CodeContentType]; /** * @public * @enum */ export declare const KeyType: { readonly AWS_OWNED_KEY: "AWS_OWNED_KEY"; readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY"; }; /** * @public */ export type KeyType = (typeof KeyType)[keyof typeof KeyType]; /** * @public * @enum */ export declare const ConfigurationType: { readonly CUSTOM: "CUSTOM"; readonly DEFAULT: "DEFAULT"; }; /** * @public */ export type ConfigurationType = (typeof ConfigurationType)[keyof typeof ConfigurationType]; /** * @public * @enum */ export declare const LogLevel: { readonly DEBUG: "DEBUG"; readonly ERROR: "ERROR"; readonly INFO: "INFO"; readonly WARN: "WARN"; }; /** * @public */ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel]; /** * @public * @enum */ export declare const MetricsLevel: { readonly APPLICATION: "APPLICATION"; readonly OPERATOR: "OPERATOR"; readonly PARALLELISM: "PARALLELISM"; readonly TASK: "TASK"; }; /** * @public */ export type MetricsLevel = (typeof MetricsLevel)[keyof typeof MetricsLevel]; /** * @public * @enum */ export declare const ArtifactType: { readonly DEPENDENCY_JAR: "DEPENDENCY_JAR"; readonly UDF: "UDF"; }; /** * @public */ export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType]; /** * @public * @enum */ export declare const ApplicationRestoreType: { readonly RESTORE_FROM_CUSTOM_SNAPSHOT: "RESTORE_FROM_CUSTOM_SNAPSHOT"; readonly RESTORE_FROM_LATEST_SNAPSHOT: "RESTORE_FROM_LATEST_SNAPSHOT"; readonly SKIP_RESTORE_FROM_SNAPSHOT: "SKIP_RESTORE_FROM_SNAPSHOT"; }; /** * @public */ export type ApplicationRestoreType = (typeof ApplicationRestoreType)[keyof typeof ApplicationRestoreType]; /** * @public * @enum */ export declare const ApplicationMode: { readonly INTERACTIVE: "INTERACTIVE"; readonly STREAMING: "STREAMING"; }; /** * @public */ export type ApplicationMode = (typeof ApplicationMode)[keyof typeof ApplicationMode]; /** * @public * @enum */ export declare const ApplicationStatus: { readonly AUTOSCALING: "AUTOSCALING"; readonly DELETING: "DELETING"; readonly FORCE_STOPPING: "FORCE_STOPPING"; readonly MAINTENANCE: "MAINTENANCE"; readonly READY: "READY"; readonly ROLLED_BACK: "ROLLED_BACK"; readonly ROLLING_BACK: "ROLLING_BACK"; readonly RUNNING: "RUNNING"; readonly STARTING: "STARTING"; readonly STOPPING: "STOPPING"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus]; /** * @public * @enum */ export declare const RuntimeEnvironment: { readonly FLINK_1_11: "FLINK-1_11"; readonly FLINK_1_13: "FLINK-1_13"; readonly FLINK_1_15: "FLINK-1_15"; readonly FLINK_1_18: "FLINK-1_18"; readonly FLINK_1_19: "FLINK-1_19"; readonly FLINK_1_20: "FLINK-1_20"; readonly FLINK_1_6: "FLINK-1_6"; readonly FLINK_1_8: "FLINK-1_8"; readonly FLINK_2_2: "FLINK-2_2"; readonly FLINK_2_3: "FLINK-2_3"; readonly SQL_1_0: "SQL-1_0"; readonly ZEPPELIN_FLINK_1_0: "ZEPPELIN-FLINK-1_0"; readonly ZEPPELIN_FLINK_2_0: "ZEPPELIN-FLINK-2_0"; readonly ZEPPELIN_FLINK_3_0: "ZEPPELIN-FLINK-3_0"; }; /** * @public */ export type RuntimeEnvironment = (typeof RuntimeEnvironment)[keyof typeof RuntimeEnvironment]; /** * @public * @enum */ export declare const OperationStatus: { readonly CANCELLED: "CANCELLED"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUCCESSFUL: "SUCCESSFUL"; }; /** * @public */ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus]; /** * @public * @enum */ export declare const UrlType: { readonly FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL"; readonly ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL"; }; /** * @public */ export type UrlType = (typeof UrlType)[keyof typeof UrlType]; /** * @public * @enum */ export declare const SnapshotStatus: { readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly READY: "READY"; }; /** * @public */ export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];