@aws-sdk/client-database-migration-service 3.301.0 → 3.306.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -464,11 +464,16 @@ export interface DmsTransferSettings {
464
464
  }
465
465
  /**
466
466
  * @public
467
+ * @enum
467
468
  */
468
- export declare enum NestingLevelValue {
469
- NONE = "none",
470
- ONE = "one"
471
- }
469
+ export declare const NestingLevelValue: {
470
+ readonly NONE: "none";
471
+ readonly ONE: "one";
472
+ };
473
+ /**
474
+ * @public
475
+ */
476
+ export type NestingLevelValue = (typeof NestingLevelValue)[keyof typeof NestingLevelValue];
472
477
  /**
473
478
  * @public
474
479
  * <p>Provides information that defines a DocumentDB endpoint.</p>
@@ -593,18 +598,28 @@ export interface ElasticsearchSettings {
593
598
  }
594
599
  /**
595
600
  * @public
601
+ * @enum
596
602
  */
597
- export declare enum ReplicationEndpointTypeValue {
598
- SOURCE = "source",
599
- TARGET = "target"
600
- }
603
+ export declare const ReplicationEndpointTypeValue: {
604
+ readonly SOURCE: "source";
605
+ readonly TARGET: "target";
606
+ };
601
607
  /**
602
608
  * @public
603
609
  */
604
- export declare enum TargetDbType {
605
- MULTIPLE_DATABASES = "multiple-databases",
606
- SPECIFIC_DATABASE = "specific-database"
607
- }
610
+ export type ReplicationEndpointTypeValue = (typeof ReplicationEndpointTypeValue)[keyof typeof ReplicationEndpointTypeValue];
611
+ /**
612
+ * @public
613
+ * @enum
614
+ */
615
+ export declare const TargetDbType: {
616
+ readonly MULTIPLE_DATABASES: "multiple-databases";
617
+ readonly SPECIFIC_DATABASE: "specific-database";
618
+ };
619
+ /**
620
+ * @public
621
+ */
622
+ export type TargetDbType = (typeof TargetDbType)[keyof typeof TargetDbType];
608
623
  /**
609
624
  * @public
610
625
  * <p>Settings in JSON format for the source GCP MySQL endpoint.</p>
@@ -774,27 +789,42 @@ export interface IBMDb2Settings {
774
789
  }
775
790
  /**
776
791
  * @public
792
+ * @enum
777
793
  */
778
- export declare enum MessageFormatValue {
779
- JSON = "json",
780
- JSON_UNFORMATTED = "json-unformatted"
781
- }
794
+ export declare const MessageFormatValue: {
795
+ readonly JSON: "json";
796
+ readonly JSON_UNFORMATTED: "json-unformatted";
797
+ };
782
798
  /**
783
799
  * @public
784
800
  */
785
- export declare enum KafkaSaslMechanism {
786
- PLAIN = "plain",
787
- SCRAM_SHA_512 = "scram-sha-512"
788
- }
801
+ export type MessageFormatValue = (typeof MessageFormatValue)[keyof typeof MessageFormatValue];
789
802
  /**
790
803
  * @public
804
+ * @enum
791
805
  */
792
- export declare enum KafkaSecurityProtocol {
793
- PLAINTEXT = "plaintext",
794
- SASL_SSL = "sasl-ssl",
795
- SSL_AUTHENTICATION = "ssl-authentication",
796
- SSL_ENCRYPTION = "ssl-encryption"
797
- }
806
+ export declare const KafkaSaslMechanism: {
807
+ readonly PLAIN: "plain";
808
+ readonly SCRAM_SHA_512: "scram-sha-512";
809
+ };
810
+ /**
811
+ * @public
812
+ */
813
+ export type KafkaSaslMechanism = (typeof KafkaSaslMechanism)[keyof typeof KafkaSaslMechanism];
814
+ /**
815
+ * @public
816
+ * @enum
817
+ */
818
+ export declare const KafkaSecurityProtocol: {
819
+ readonly PLAINTEXT: "plaintext";
820
+ readonly SASL_SSL: "sasl-ssl";
821
+ readonly SSL_AUTHENTICATION: "ssl-authentication";
822
+ readonly SSL_ENCRYPTION: "ssl-encryption";
823
+ };
824
+ /**
825
+ * @public
826
+ */
827
+ export type KafkaSecurityProtocol = (typeof KafkaSecurityProtocol)[keyof typeof KafkaSecurityProtocol];
798
828
  /**
799
829
  * @public
800
830
  * <p>Provides information that describes an Apache Kafka endpoint. This
@@ -984,21 +1014,31 @@ export interface KinesisSettings {
984
1014
  }
985
1015
  /**
986
1016
  * @public
1017
+ * @enum
987
1018
  */
988
- export declare enum SafeguardPolicy {
989
- EXCLUSIVE_AUTOMATIC_TRUNCATION = "exclusive-automatic-truncation",
990
- RELY_ON_SQL_SERVER_REPLICATION_AGENT = "rely-on-sql-server-replication-agent",
991
- SHARED_AUTOMATIC_TRUNCATION = "shared-automatic-truncation"
992
- }
1019
+ export declare const SafeguardPolicy: {
1020
+ readonly EXCLUSIVE_AUTOMATIC_TRUNCATION: "exclusive-automatic-truncation";
1021
+ readonly RELY_ON_SQL_SERVER_REPLICATION_AGENT: "rely-on-sql-server-replication-agent";
1022
+ readonly SHARED_AUTOMATIC_TRUNCATION: "shared-automatic-truncation";
1023
+ };
993
1024
  /**
994
1025
  * @public
995
1026
  */
996
- export declare enum TlogAccessMode {
997
- BackupOnly = "BackupOnly",
998
- PreferBackup = "PreferBackup",
999
- PreferTlog = "PreferTlog",
1000
- TlogOnly = "TlogOnly"
1001
- }
1027
+ export type SafeguardPolicy = (typeof SafeguardPolicy)[keyof typeof SafeguardPolicy];
1028
+ /**
1029
+ * @public
1030
+ * @enum
1031
+ */
1032
+ export declare const TlogAccessMode: {
1033
+ readonly BackupOnly: "BackupOnly";
1034
+ readonly PreferBackup: "PreferBackup";
1035
+ readonly PreferTlog: "PreferTlog";
1036
+ readonly TlogOnly: "TlogOnly";
1037
+ };
1038
+ /**
1039
+ * @public
1040
+ */
1041
+ export type TlogAccessMode = (typeof TlogAccessMode)[keyof typeof TlogAccessMode];
1002
1042
  /**
1003
1043
  * @public
1004
1044
  * <p>Provides information that defines a Microsoft SQL Server endpoint.</p>
@@ -1130,19 +1170,29 @@ export interface MicrosoftSQLServerSettings {
1130
1170
  }
1131
1171
  /**
1132
1172
  * @public
1173
+ * @enum
1133
1174
  */
1134
- export declare enum AuthMechanismValue {
1135
- DEFAULT = "default",
1136
- MONGODB_CR = "mongodb_cr",
1137
- SCRAM_SHA_1 = "scram_sha_1"
1138
- }
1175
+ export declare const AuthMechanismValue: {
1176
+ readonly DEFAULT: "default";
1177
+ readonly MONGODB_CR: "mongodb_cr";
1178
+ readonly SCRAM_SHA_1: "scram_sha_1";
1179
+ };
1139
1180
  /**
1140
1181
  * @public
1141
1182
  */
1142
- export declare enum AuthTypeValue {
1143
- NO = "no",
1144
- PASSWORD = "password"
1145
- }
1183
+ export type AuthMechanismValue = (typeof AuthMechanismValue)[keyof typeof AuthMechanismValue];
1184
+ /**
1185
+ * @public
1186
+ * @enum
1187
+ */
1188
+ export declare const AuthTypeValue: {
1189
+ readonly NO: "no";
1190
+ readonly PASSWORD: "password";
1191
+ };
1192
+ /**
1193
+ * @public
1194
+ */
1195
+ export type AuthTypeValue = (typeof AuthTypeValue)[keyof typeof AuthTypeValue];
1146
1196
  /**
1147
1197
  * @public
1148
1198
  * <p>Provides information that defines a MongoDB endpoint.</p>
@@ -1407,12 +1457,17 @@ export interface NeptuneSettings {
1407
1457
  }
1408
1458
  /**
1409
1459
  * @public
1460
+ * @enum
1410
1461
  */
1411
- export declare enum CharLengthSemantics {
1412
- BYTE = "byte",
1413
- CHAR = "char",
1414
- DEFAULT = "default"
1415
- }
1462
+ export declare const CharLengthSemantics: {
1463
+ readonly BYTE: "byte";
1464
+ readonly CHAR: "char";
1465
+ readonly DEFAULT: "default";
1466
+ };
1467
+ /**
1468
+ * @public
1469
+ */
1470
+ export type CharLengthSemantics = (typeof CharLengthSemantics)[keyof typeof CharLengthSemantics];
1416
1471
  /**
1417
1472
  * @public
1418
1473
  * <p>Provides information that defines an Oracle endpoint.</p>
@@ -1767,12 +1822,17 @@ export interface OracleSettings {
1767
1822
  }
1768
1823
  /**
1769
1824
  * @public
1825
+ * @enum
1770
1826
  */
1771
- export declare enum PluginNameValue {
1772
- NO_PREFERENCE = "no-preference",
1773
- PGLOGICAL = "pglogical",
1774
- TEST_DECODING = "test-decoding"
1775
- }
1827
+ export declare const PluginNameValue: {
1828
+ readonly NO_PREFERENCE: "no-preference";
1829
+ readonly PGLOGICAL: "pglogical";
1830
+ readonly TEST_DECODING: "test-decoding";
1831
+ };
1832
+ /**
1833
+ * @public
1834
+ */
1835
+ export type PluginNameValue = (typeof PluginNameValue)[keyof typeof PluginNameValue];
1776
1836
  /**
1777
1837
  * @public
1778
1838
  * <p>Provides information that defines a PostgreSQL endpoint.</p>
@@ -1924,19 +1984,29 @@ export interface PostgreSQLSettings {
1924
1984
  }
1925
1985
  /**
1926
1986
  * @public
1987
+ * @enum
1927
1988
  */
1928
- export declare enum RedisAuthTypeValue {
1929
- AUTH_ROLE = "auth-role",
1930
- AUTH_TOKEN = "auth-token",
1931
- NONE = "none"
1932
- }
1989
+ export declare const RedisAuthTypeValue: {
1990
+ readonly AUTH_ROLE: "auth-role";
1991
+ readonly AUTH_TOKEN: "auth-token";
1992
+ readonly NONE: "none";
1993
+ };
1933
1994
  /**
1934
1995
  * @public
1935
1996
  */
1936
- export declare enum SslSecurityProtocolValue {
1937
- PLAINTEXT = "plaintext",
1938
- SSL_ENCRYPTION = "ssl-encryption"
1939
- }
1997
+ export type RedisAuthTypeValue = (typeof RedisAuthTypeValue)[keyof typeof RedisAuthTypeValue];
1998
+ /**
1999
+ * @public
2000
+ * @enum
2001
+ */
2002
+ export declare const SslSecurityProtocolValue: {
2003
+ readonly PLAINTEXT: "plaintext";
2004
+ readonly SSL_ENCRYPTION: "ssl-encryption";
2005
+ };
2006
+ /**
2007
+ * @public
2008
+ */
2009
+ export type SslSecurityProtocolValue = (typeof SslSecurityProtocolValue)[keyof typeof SslSecurityProtocolValue];
1940
2010
  /**
1941
2011
  * @public
1942
2012
  * <p>Provides information that defines a Redis target endpoint.</p>
@@ -1988,11 +2058,16 @@ export interface RedisSettings {
1988
2058
  }
1989
2059
  /**
1990
2060
  * @public
2061
+ * @enum
1991
2062
  */
1992
- export declare enum EncryptionModeValue {
1993
- SSE_KMS = "sse-kms",
1994
- SSE_S3 = "sse-s3"
1995
- }
2063
+ export declare const EncryptionModeValue: {
2064
+ readonly SSE_KMS: "sse-kms";
2065
+ readonly SSE_S3: "sse-s3";
2066
+ };
2067
+ /**
2068
+ * @public
2069
+ */
2070
+ export type EncryptionModeValue = (typeof EncryptionModeValue)[keyof typeof EncryptionModeValue];
1996
2071
  /**
1997
2072
  * @public
1998
2073
  * <p>Provides information that defines an Amazon Redshift endpoint.</p>
@@ -2215,65 +2290,100 @@ export interface RedshiftSettings {
2215
2290
  }
2216
2291
  /**
2217
2292
  * @public
2293
+ * @enum
2218
2294
  */
2219
- export declare enum CannedAclForObjectsValue {
2220
- AUTHENTICATED_READ = "authenticated-read",
2221
- AWS_EXEC_READ = "aws-exec-read",
2222
- BUCKET_OWNER_FULL_CONTROL = "bucket-owner-full-control",
2223
- BUCKET_OWNER_READ = "bucket-owner-read",
2224
- NONE = "none",
2225
- PRIVATE = "private",
2226
- PUBLIC_READ = "public-read",
2227
- PUBLIC_READ_WRITE = "public-read-write"
2228
- }
2295
+ export declare const CannedAclForObjectsValue: {
2296
+ readonly AUTHENTICATED_READ: "authenticated-read";
2297
+ readonly AWS_EXEC_READ: "aws-exec-read";
2298
+ readonly BUCKET_OWNER_FULL_CONTROL: "bucket-owner-full-control";
2299
+ readonly BUCKET_OWNER_READ: "bucket-owner-read";
2300
+ readonly NONE: "none";
2301
+ readonly PRIVATE: "private";
2302
+ readonly PUBLIC_READ: "public-read";
2303
+ readonly PUBLIC_READ_WRITE: "public-read-write";
2304
+ };
2229
2305
  /**
2230
2306
  * @public
2231
2307
  */
2232
- export declare enum CompressionTypeValue {
2233
- GZIP = "gzip",
2234
- NONE = "none"
2235
- }
2308
+ export type CannedAclForObjectsValue = (typeof CannedAclForObjectsValue)[keyof typeof CannedAclForObjectsValue];
2236
2309
  /**
2237
2310
  * @public
2311
+ * @enum
2238
2312
  */
2239
- export declare enum DataFormatValue {
2240
- CSV = "csv",
2241
- PARQUET = "parquet"
2242
- }
2313
+ export declare const CompressionTypeValue: {
2314
+ readonly GZIP: "gzip";
2315
+ readonly NONE: "none";
2316
+ };
2243
2317
  /**
2244
2318
  * @public
2245
2319
  */
2246
- export declare enum DatePartitionDelimiterValue {
2247
- DASH = "DASH",
2248
- NONE = "NONE",
2249
- SLASH = "SLASH",
2250
- UNDERSCORE = "UNDERSCORE"
2251
- }
2320
+ export type CompressionTypeValue = (typeof CompressionTypeValue)[keyof typeof CompressionTypeValue];
2252
2321
  /**
2253
2322
  * @public
2323
+ * @enum
2254
2324
  */
2255
- export declare enum DatePartitionSequenceValue {
2256
- DDMMYYYY = "DDMMYYYY",
2257
- MMYYYYDD = "MMYYYYDD",
2258
- YYYYMM = "YYYYMM",
2259
- YYYYMMDD = "YYYYMMDD",
2260
- YYYYMMDDHH = "YYYYMMDDHH"
2261
- }
2325
+ export declare const DataFormatValue: {
2326
+ readonly CSV: "csv";
2327
+ readonly PARQUET: "parquet";
2328
+ };
2262
2329
  /**
2263
2330
  * @public
2264
2331
  */
2265
- export declare enum EncodingTypeValue {
2266
- PLAIN = "plain",
2267
- PLAIN_DICTIONARY = "plain-dictionary",
2268
- RLE_DICTIONARY = "rle-dictionary"
2269
- }
2332
+ export type DataFormatValue = (typeof DataFormatValue)[keyof typeof DataFormatValue];
2270
2333
  /**
2271
2334
  * @public
2335
+ * @enum
2272
2336
  */
2273
- export declare enum ParquetVersionValue {
2274
- PARQUET_1_0 = "parquet-1-0",
2275
- PARQUET_2_0 = "parquet-2-0"
2276
- }
2337
+ export declare const DatePartitionDelimiterValue: {
2338
+ readonly DASH: "DASH";
2339
+ readonly NONE: "NONE";
2340
+ readonly SLASH: "SLASH";
2341
+ readonly UNDERSCORE: "UNDERSCORE";
2342
+ };
2343
+ /**
2344
+ * @public
2345
+ */
2346
+ export type DatePartitionDelimiterValue = (typeof DatePartitionDelimiterValue)[keyof typeof DatePartitionDelimiterValue];
2347
+ /**
2348
+ * @public
2349
+ * @enum
2350
+ */
2351
+ export declare const DatePartitionSequenceValue: {
2352
+ readonly DDMMYYYY: "DDMMYYYY";
2353
+ readonly MMYYYYDD: "MMYYYYDD";
2354
+ readonly YYYYMM: "YYYYMM";
2355
+ readonly YYYYMMDD: "YYYYMMDD";
2356
+ readonly YYYYMMDDHH: "YYYYMMDDHH";
2357
+ };
2358
+ /**
2359
+ * @public
2360
+ */
2361
+ export type DatePartitionSequenceValue = (typeof DatePartitionSequenceValue)[keyof typeof DatePartitionSequenceValue];
2362
+ /**
2363
+ * @public
2364
+ * @enum
2365
+ */
2366
+ export declare const EncodingTypeValue: {
2367
+ readonly PLAIN: "plain";
2368
+ readonly PLAIN_DICTIONARY: "plain-dictionary";
2369
+ readonly RLE_DICTIONARY: "rle-dictionary";
2370
+ };
2371
+ /**
2372
+ * @public
2373
+ */
2374
+ export type EncodingTypeValue = (typeof EncodingTypeValue)[keyof typeof EncodingTypeValue];
2375
+ /**
2376
+ * @public
2377
+ * @enum
2378
+ */
2379
+ export declare const ParquetVersionValue: {
2380
+ readonly PARQUET_1_0: "parquet-1-0";
2381
+ readonly PARQUET_2_0: "parquet-2-0";
2382
+ };
2383
+ /**
2384
+ * @public
2385
+ */
2386
+ export type ParquetVersionValue = (typeof ParquetVersionValue)[keyof typeof ParquetVersionValue];
2277
2387
  /**
2278
2388
  * @public
2279
2389
  * <p>Settings for exporting data to Amazon S3. </p>
@@ -2804,13 +2914,18 @@ export interface S3Settings {
2804
2914
  }
2805
2915
  /**
2806
2916
  * @public
2917
+ * @enum
2807
2918
  */
2808
- export declare enum DmsSslModeValue {
2809
- NONE = "none",
2810
- REQUIRE = "require",
2811
- VERIFY_CA = "verify-ca",
2812
- VERIFY_FULL = "verify-full"
2813
- }
2919
+ export declare const DmsSslModeValue: {
2920
+ readonly NONE: "none";
2921
+ readonly REQUIRE: "require";
2922
+ readonly VERIFY_CA: "verify-ca";
2923
+ readonly VERIFY_FULL: "verify-full";
2924
+ };
2925
+ /**
2926
+ * @public
2927
+ */
2928
+ export type DmsSslModeValue = (typeof DmsSslModeValue)[keyof typeof DmsSslModeValue];
2814
2929
  /**
2815
2930
  * @public
2816
2931
  * <p>Provides information that defines a SAP ASE endpoint.</p>
@@ -4194,12 +4309,17 @@ export interface CreateReplicationSubnetGroupResponse {
4194
4309
  }
4195
4310
  /**
4196
4311
  * @public
4312
+ * @enum
4197
4313
  */
4198
- export declare enum MigrationTypeValue {
4199
- CDC = "cdc",
4200
- FULL_LOAD = "full-load",
4201
- FULL_LOAD_AND_CDC = "full-load-and-cdc"
4202
- }
4314
+ export declare const MigrationTypeValue: {
4315
+ readonly CDC: "cdc";
4316
+ readonly FULL_LOAD: "full-load";
4317
+ readonly FULL_LOAD_AND_CDC: "full-load-and-cdc";
4318
+ };
4319
+ /**
4320
+ * @public
4321
+ */
4322
+ export type MigrationTypeValue = (typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
4203
4323
  /**
4204
4324
  * @public
4205
4325
  * <p></p>
@@ -5229,13 +5349,18 @@ export interface DescribeEndpointSettingsMessage {
5229
5349
  }
5230
5350
  /**
5231
5351
  * @public
5352
+ * @enum
5232
5353
  */
5233
- export declare enum EndpointSettingTypeValue {
5234
- BOOLEAN = "boolean",
5235
- ENUM = "enum",
5236
- INTEGER = "integer",
5237
- STRING = "string"
5238
- }
5354
+ export declare const EndpointSettingTypeValue: {
5355
+ readonly BOOLEAN: "boolean";
5356
+ readonly ENUM: "enum";
5357
+ readonly INTEGER: "integer";
5358
+ readonly STRING: "string";
5359
+ };
5360
+ /**
5361
+ * @public
5362
+ */
5363
+ export type EndpointSettingTypeValue = (typeof EndpointSettingTypeValue)[keyof typeof EndpointSettingTypeValue];
5239
5364
  /**
5240
5365
  * @public
5241
5366
  * <p>Endpoint settings.</p>
@@ -5418,10 +5543,15 @@ export interface DescribeEventCategoriesResponse {
5418
5543
  }
5419
5544
  /**
5420
5545
  * @public
5546
+ * @enum
5421
5547
  */
5422
- export declare enum SourceType {
5423
- replication_instance = "replication-instance"
5424
- }
5548
+ export declare const SourceType: {
5549
+ readonly replication_instance: "replication-instance";
5550
+ };
5551
+ /**
5552
+ * @public
5553
+ */
5554
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
5425
5555
  /**
5426
5556
  * @public
5427
5557
  * <p></p>
@@ -5598,11 +5728,16 @@ export interface DescribeFleetAdvisorCollectorsRequest {
5598
5728
  }
5599
5729
  /**
5600
5730
  * @public
5731
+ * @enum
5601
5732
  */
5602
- export declare enum CollectorStatus {
5603
- ACTIVE = "ACTIVE",
5604
- UNREGISTERED = "UNREGISTERED"
5605
- }
5733
+ export declare const CollectorStatus: {
5734
+ readonly ACTIVE: "ACTIVE";
5735
+ readonly UNREGISTERED: "UNREGISTERED";
5736
+ };
5737
+ /**
5738
+ * @public
5739
+ */
5740
+ export type CollectorStatus = (typeof CollectorStatus)[keyof typeof CollectorStatus];
5606
5741
  /**
5607
5742
  * @public
5608
5743
  * <p>Describes the last Fleet Advisor collector health check.</p>
@@ -5642,12 +5777,17 @@ export interface InventoryData {
5642
5777
  }
5643
5778
  /**
5644
5779
  * @public
5780
+ * @enum
5645
5781
  */
5646
- export declare enum VersionStatus {
5647
- OUTDATED = "OUTDATED",
5648
- UNSUPPORTED = "UNSUPPORTED",
5649
- UP_TO_DATE = "UP_TO_DATE"
5650
- }
5782
+ export declare const VersionStatus: {
5783
+ readonly OUTDATED: "OUTDATED";
5784
+ readonly UNSUPPORTED: "UNSUPPORTED";
5785
+ readonly UP_TO_DATE: "UP_TO_DATE";
5786
+ };
5787
+ /**
5788
+ * @public
5789
+ */
5790
+ export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
5651
5791
  /**
5652
5792
  * @public
5653
5793
  * <p>Describes a Fleet Advisor collector.</p>
@@ -6247,11 +6387,16 @@ export interface DescribeOrderableReplicationInstancesMessage {
6247
6387
  }
6248
6388
  /**
6249
6389
  * @public
6390
+ * @enum
6250
6391
  */
6251
- export declare enum ReleaseStatusValues {
6252
- BETA = "beta",
6253
- PROD = "prod"
6254
- }
6392
+ export declare const ReleaseStatusValues: {
6393
+ readonly BETA: "beta";
6394
+ readonly PROD: "prod";
6395
+ };
6396
+ /**
6397
+ * @public
6398
+ */
6399
+ export type ReleaseStatusValues = (typeof ReleaseStatusValues)[keyof typeof ReleaseStatusValues];
6255
6400
  /**
6256
6401
  * @public
6257
6402
  * <p>In response to the <code>DescribeOrderableReplicationInstances</code> operation, this
@@ -6668,12 +6813,17 @@ export interface DescribeRefreshSchemasStatusMessage {
6668
6813
  }
6669
6814
  /**
6670
6815
  * @public
6816
+ * @enum
6671
6817
  */
6672
- export declare enum RefreshSchemasStatusTypeValue {
6673
- FAILED = "failed",
6674
- REFRESHING = "refreshing",
6675
- SUCCESSFUL = "successful"
6676
- }
6818
+ export declare const RefreshSchemasStatusTypeValue: {
6819
+ readonly FAILED: "failed";
6820
+ readonly REFRESHING: "refreshing";
6821
+ readonly SUCCESSFUL: "successful";
6822
+ };
6823
+ /**
6824
+ * @public
6825
+ */
6826
+ export type RefreshSchemasStatusTypeValue = (typeof RefreshSchemasStatusTypeValue)[keyof typeof RefreshSchemasStatusTypeValue];
6677
6827
  /**
6678
6828
  * @public
6679
6829
  * <p>Provides information that describes status of a schema at an endpoint specified by the
@@ -8078,11 +8228,16 @@ export interface RefreshSchemasResponse {
8078
8228
  }
8079
8229
  /**
8080
8230
  * @public
8231
+ * @enum
8081
8232
  */
8082
- export declare enum ReloadOptionValue {
8083
- DATA_RELOAD = "data-reload",
8084
- VALIDATE_ONLY = "validate-only"
8085
- }
8233
+ export declare const ReloadOptionValue: {
8234
+ readonly DATA_RELOAD: "data-reload";
8235
+ readonly VALIDATE_ONLY: "validate-only";
8236
+ };
8237
+ /**
8238
+ * @public
8239
+ */
8240
+ export type ReloadOptionValue = (typeof ReloadOptionValue)[keyof typeof ReloadOptionValue];
8086
8241
  /**
8087
8242
  * @public
8088
8243
  * <p>Provides the name of the schema and table to be reloaded.</p>
@@ -8181,12 +8336,17 @@ export interface StartRecommendationsRequest {
8181
8336
  }
8182
8337
  /**
8183
8338
  * @public
8339
+ * @enum
8184
8340
  */
8185
- export declare enum StartReplicationTaskTypeValue {
8186
- RELOAD_TARGET = "reload-target",
8187
- RESUME_PROCESSING = "resume-processing",
8188
- START_REPLICATION = "start-replication"
8189
- }
8341
+ export declare const StartReplicationTaskTypeValue: {
8342
+ readonly RELOAD_TARGET: "reload-target";
8343
+ readonly RESUME_PROCESSING: "resume-processing";
8344
+ readonly START_REPLICATION: "start-replication";
8345
+ };
8346
+ /**
8347
+ * @public
8348
+ */
8349
+ export type StartReplicationTaskTypeValue = (typeof StartReplicationTaskTypeValue)[keyof typeof StartReplicationTaskTypeValue];
8190
8350
  /**
8191
8351
  * @public
8192
8352
  * <p></p>