/** * @public * @enum */ export declare const DbInstanceType: { readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge"; readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge"; readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge"; readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge"; readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge"; readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge"; readonly DB_INFLUX_LARGE: "db.influx.large"; readonly DB_INFLUX_MEDIUM: "db.influx.medium"; readonly DB_INFLUX_XLARGE: "db.influx.xlarge"; }; /** * @public */ export type DbInstanceType = (typeof DbInstanceType)[keyof typeof DbInstanceType]; /** * @public * @enum */ export declare const DbStorageType: { readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1"; readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2"; readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3"; }; /** * @public */ export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType]; /** * @public * @enum */ export declare const ResourceDeploymentType: { readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS"; readonly SINGLE_AZ: "SINGLE_AZ"; readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY"; }; /** * @public */ export type ResourceDeploymentType = (typeof ResourceDeploymentType)[keyof typeof ResourceDeploymentType]; /** * @public * @enum */ export declare const EngineType: { readonly INFLUXDB_V2: "INFLUXDB_V2"; readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE"; readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE"; }; /** * @public */ export type EngineType = (typeof EngineType)[keyof typeof EngineType]; /** * @public * @enum */ export declare const FailoverMode: { readonly AUTOMATIC: "AUTOMATIC"; readonly NO_FAILOVER: "NO_FAILOVER"; }; /** * @public */ export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode]; /** * @public * @enum */ export declare const NetworkType: { readonly DUAL: "DUAL"; readonly IPV4: "IPV4"; }; /** * @public */ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType]; /** * @public * @enum */ export declare const DbBackupStatus: { readonly COMPLETED: "COMPLETED"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; }; /** * @public */ export type DbBackupStatus = (typeof DbBackupStatus)[keyof typeof DbBackupStatus]; /** * @public * @enum */ export declare const DbBackupType: { readonly CONTINUOUS: "CONTINUOUS"; readonly CUSTOM_SCHEDULE: "CUSTOM_SCHEDULE"; readonly DAILY: "DAILY"; readonly HOURLY: "HOURLY"; readonly MONTHLY: "MONTHLY"; readonly ON_DEMAND: "ON_DEMAND"; readonly WEEKLY: "WEEKLY"; }; /** * @public */ export type DbBackupType = (typeof DbBackupType)[keyof typeof DbBackupType]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED"; readonly OTHER: "OTHER"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const AutomatedDbBackupType: { readonly CONTINUOUS: "CONTINUOUS"; readonly CUSTOM_SCHEDULE: "CUSTOM_SCHEDULE"; readonly DAILY: "DAILY"; readonly HOURLY: "HOURLY"; readonly MONTHLY: "MONTHLY"; readonly WEEKLY: "WEEKLY"; }; /** * @public */ export type AutomatedDbBackupType = (typeof AutomatedDbBackupType)[keyof typeof AutomatedDbBackupType]; /** * @public * @enum */ export declare const RestoreMode: { readonly NEW_RESOURCE: "NEW_RESOURCE"; readonly REPLACE_EXISTING: "REPLACE_EXISTING"; }; /** * @public */ export type RestoreMode = (typeof RestoreMode)[keyof typeof RestoreMode]; /** * @public * @enum */ export declare const ResourceType: { readonly DB_CLUSTER: "DB_CLUSTER"; readonly DB_INSTANCE: "DB_INSTANCE"; }; /** * @public */ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; /** * @public * @enum */ export declare const RestoreStatus: { readonly RESTORING: "RESTORING"; }; /** * @public */ export type RestoreStatus = (typeof RestoreStatus)[keyof typeof RestoreStatus]; /** * @public * @enum */ export declare const ClusterDeploymentType: { readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS"; }; /** * @public */ export type ClusterDeploymentType = (typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType]; /** * @public * @enum */ export declare const ClusterStatus: { readonly AVAILABLE: "AVAILABLE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly MAINTENANCE: "MAINTENANCE"; readonly PARTIALLY_AVAILABLE: "PARTIALLY_AVAILABLE"; readonly REBOOTING: "REBOOTING"; readonly REBOOT_FAILED: "REBOOT_FAILED"; readonly RESTORE_FAILED: "RESTORE_FAILED"; readonly RESTORING: "RESTORING"; readonly UPDATING: "UPDATING"; readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE"; }; /** * @public */ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus]; /** * @public * @enum */ export declare const DeploymentType: { readonly SINGLE_AZ: "SINGLE_AZ"; readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY"; }; /** * @public */ export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType]; /** * @public * @enum */ export declare const InstanceMode: { readonly COMPACT: "COMPACT"; readonly INGEST: "INGEST"; readonly PRIMARY: "PRIMARY"; readonly PROCESS: "PROCESS"; readonly QUERY: "QUERY"; readonly REPLICA: "REPLICA"; readonly STANDBY: "STANDBY"; }; /** * @public */ export type InstanceMode = (typeof InstanceMode)[keyof typeof InstanceMode]; /** * @public * @enum */ export declare const Status: { readonly AVAILABLE: "AVAILABLE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly MAINTENANCE: "MAINTENANCE"; readonly MODIFYING: "MODIFYING"; readonly REBOOTING: "REBOOTING"; readonly REBOOT_FAILED: "REBOOT_FAILED"; readonly RESTORE_FAILED: "RESTORE_FAILED"; readonly RESTORING: "RESTORING"; readonly UPDATING: "UPDATING"; readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE"; readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE"; }; /** * @public */ export type Status = (typeof Status)[keyof typeof Status]; /** * @public * @enum */ export declare const DurationType: { readonly DAYS: "days"; readonly HOURS: "hours"; readonly MILLISECONDS: "milliseconds"; readonly MINUTES: "minutes"; readonly SECONDS: "seconds"; }; /** * @public */ export type DurationType = (typeof DurationType)[keyof typeof DurationType]; /** * @public * @enum */ export declare const LogLevel: { readonly DEBUG: "debug"; readonly ERROR: "error"; readonly INFO: "info"; }; /** * @public */ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel]; /** * @public * @enum */ export declare const TracingType: { readonly DISABLED: "disabled"; readonly JAEGER: "jaeger"; readonly LOG: "log"; }; /** * @public */ export type TracingType = (typeof TracingType)[keyof typeof TracingType]; /** * @public * @enum */ export declare const DataFusionRuntimeType: { readonly MULTI_THREAD: "multi-thread"; readonly MULTI_THREAD_ALT: "multi-thread-alt"; }; /** * @public */ export type DataFusionRuntimeType = (typeof DataFusionRuntimeType)[keyof typeof DataFusionRuntimeType]; /** * @public * @enum */ export declare const LogFormats: { readonly FULL: "full"; }; /** * @public */ export type LogFormats = (typeof LogFormats)[keyof typeof LogFormats];