@aws-sdk/client-database-migration-service 3.301.0 → 3.303.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.
@@ -101,10 +101,12 @@ export interface DmsTransferSettings {
101
101
  ServiceAccessRoleArn?: string;
102
102
  BucketName?: string;
103
103
  }
104
- export declare enum NestingLevelValue {
105
- NONE = "none",
106
- ONE = "one",
107
- }
104
+ export declare const NestingLevelValue: {
105
+ readonly NONE: "none";
106
+ readonly ONE: "one";
107
+ };
108
+ export type NestingLevelValue =
109
+ (typeof NestingLevelValue)[keyof typeof NestingLevelValue];
108
110
  export interface DocDbSettings {
109
111
  Username?: string;
110
112
  Password?: string;
@@ -128,14 +130,17 @@ export interface ElasticsearchSettings {
128
130
  ErrorRetryDuration?: number;
129
131
  UseNewMappingType?: boolean;
130
132
  }
131
- export declare enum ReplicationEndpointTypeValue {
132
- SOURCE = "source",
133
- TARGET = "target",
134
- }
135
- export declare enum TargetDbType {
136
- MULTIPLE_DATABASES = "multiple-databases",
137
- SPECIFIC_DATABASE = "specific-database",
138
- }
133
+ export declare const ReplicationEndpointTypeValue: {
134
+ readonly SOURCE: "source";
135
+ readonly TARGET: "target";
136
+ };
137
+ export type ReplicationEndpointTypeValue =
138
+ (typeof ReplicationEndpointTypeValue)[keyof typeof ReplicationEndpointTypeValue];
139
+ export declare const TargetDbType: {
140
+ readonly MULTIPLE_DATABASES: "multiple-databases";
141
+ readonly SPECIFIC_DATABASE: "specific-database";
142
+ };
143
+ export type TargetDbType = (typeof TargetDbType)[keyof typeof TargetDbType];
139
144
  export interface GcpMySQLSettings {
140
145
  AfterConnectScript?: string;
141
146
  CleanSourceMetadataOnMismatch?: boolean;
@@ -164,20 +169,26 @@ export interface IBMDb2Settings {
164
169
  SecretsManagerAccessRoleArn?: string;
165
170
  SecretsManagerSecretId?: string;
166
171
  }
167
- export declare enum MessageFormatValue {
168
- JSON = "json",
169
- JSON_UNFORMATTED = "json-unformatted",
170
- }
171
- export declare enum KafkaSaslMechanism {
172
- PLAIN = "plain",
173
- SCRAM_SHA_512 = "scram-sha-512",
174
- }
175
- export declare enum KafkaSecurityProtocol {
176
- PLAINTEXT = "plaintext",
177
- SASL_SSL = "sasl-ssl",
178
- SSL_AUTHENTICATION = "ssl-authentication",
179
- SSL_ENCRYPTION = "ssl-encryption",
180
- }
172
+ export declare const MessageFormatValue: {
173
+ readonly JSON: "json";
174
+ readonly JSON_UNFORMATTED: "json-unformatted";
175
+ };
176
+ export type MessageFormatValue =
177
+ (typeof MessageFormatValue)[keyof typeof MessageFormatValue];
178
+ export declare const KafkaSaslMechanism: {
179
+ readonly PLAIN: "plain";
180
+ readonly SCRAM_SHA_512: "scram-sha-512";
181
+ };
182
+ export type KafkaSaslMechanism =
183
+ (typeof KafkaSaslMechanism)[keyof typeof KafkaSaslMechanism];
184
+ export declare const KafkaSecurityProtocol: {
185
+ readonly PLAINTEXT: "plaintext";
186
+ readonly SASL_SSL: "sasl-ssl";
187
+ readonly SSL_AUTHENTICATION: "ssl-authentication";
188
+ readonly SSL_ENCRYPTION: "ssl-encryption";
189
+ };
190
+ export type KafkaSecurityProtocol =
191
+ (typeof KafkaSecurityProtocol)[keyof typeof KafkaSecurityProtocol];
181
192
  export interface KafkaSettings {
182
193
  Broker?: string;
183
194
  Topic?: string;
@@ -211,17 +222,21 @@ export interface KinesisSettings {
211
222
  IncludeNullAndEmpty?: boolean;
212
223
  NoHexPrefix?: boolean;
213
224
  }
214
- export declare enum SafeguardPolicy {
215
- EXCLUSIVE_AUTOMATIC_TRUNCATION = "exclusive-automatic-truncation",
216
- RELY_ON_SQL_SERVER_REPLICATION_AGENT = "rely-on-sql-server-replication-agent",
217
- SHARED_AUTOMATIC_TRUNCATION = "shared-automatic-truncation",
218
- }
219
- export declare enum TlogAccessMode {
220
- BackupOnly = "BackupOnly",
221
- PreferBackup = "PreferBackup",
222
- PreferTlog = "PreferTlog",
223
- TlogOnly = "TlogOnly",
224
- }
225
+ export declare const SafeguardPolicy: {
226
+ readonly EXCLUSIVE_AUTOMATIC_TRUNCATION: "exclusive-automatic-truncation";
227
+ readonly RELY_ON_SQL_SERVER_REPLICATION_AGENT: "rely-on-sql-server-replication-agent";
228
+ readonly SHARED_AUTOMATIC_TRUNCATION: "shared-automatic-truncation";
229
+ };
230
+ export type SafeguardPolicy =
231
+ (typeof SafeguardPolicy)[keyof typeof SafeguardPolicy];
232
+ export declare const TlogAccessMode: {
233
+ readonly BackupOnly: "BackupOnly";
234
+ readonly PreferBackup: "PreferBackup";
235
+ readonly PreferTlog: "PreferTlog";
236
+ readonly TlogOnly: "TlogOnly";
237
+ };
238
+ export type TlogAccessMode =
239
+ (typeof TlogAccessMode)[keyof typeof TlogAccessMode];
225
240
  export interface MicrosoftSQLServerSettings {
226
241
  Port?: number;
227
242
  BcpPacketSize?: number;
@@ -241,15 +256,18 @@ export interface MicrosoftSQLServerSettings {
241
256
  TlogAccessMode?: TlogAccessMode | string;
242
257
  ForceLobLookup?: boolean;
243
258
  }
244
- export declare enum AuthMechanismValue {
245
- DEFAULT = "default",
246
- MONGODB_CR = "mongodb_cr",
247
- SCRAM_SHA_1 = "scram_sha_1",
248
- }
249
- export declare enum AuthTypeValue {
250
- NO = "no",
251
- PASSWORD = "password",
252
- }
259
+ export declare const AuthMechanismValue: {
260
+ readonly DEFAULT: "default";
261
+ readonly MONGODB_CR: "mongodb_cr";
262
+ readonly SCRAM_SHA_1: "scram_sha_1";
263
+ };
264
+ export type AuthMechanismValue =
265
+ (typeof AuthMechanismValue)[keyof typeof AuthMechanismValue];
266
+ export declare const AuthTypeValue: {
267
+ readonly NO: "no";
268
+ readonly PASSWORD: "password";
269
+ };
270
+ export type AuthTypeValue = (typeof AuthTypeValue)[keyof typeof AuthTypeValue];
253
271
  export interface MongoDbSettings {
254
272
  Username?: string;
255
273
  Password?: string;
@@ -291,11 +309,13 @@ export interface NeptuneSettings {
291
309
  MaxRetryCount?: number;
292
310
  IamAuthEnabled?: boolean;
293
311
  }
294
- export declare enum CharLengthSemantics {
295
- BYTE = "byte",
296
- CHAR = "char",
297
- DEFAULT = "default",
298
- }
312
+ export declare const CharLengthSemantics: {
313
+ readonly BYTE: "byte";
314
+ readonly CHAR: "char";
315
+ readonly DEFAULT: "default";
316
+ };
317
+ export type CharLengthSemantics =
318
+ (typeof CharLengthSemantics)[keyof typeof CharLengthSemantics];
299
319
  export interface OracleSettings {
300
320
  AddSupplementalLogging?: boolean;
301
321
  ArchivedLogDestId?: number;
@@ -340,11 +360,13 @@ export interface OracleSettings {
340
360
  TrimSpaceInChar?: boolean;
341
361
  ConvertTimestampWithZoneToUTC?: boolean;
342
362
  }
343
- export declare enum PluginNameValue {
344
- NO_PREFERENCE = "no-preference",
345
- PGLOGICAL = "pglogical",
346
- TEST_DECODING = "test-decoding",
347
- }
363
+ export declare const PluginNameValue: {
364
+ readonly NO_PREFERENCE: "no-preference";
365
+ readonly PGLOGICAL: "pglogical";
366
+ readonly TEST_DECODING: "test-decoding";
367
+ };
368
+ export type PluginNameValue =
369
+ (typeof PluginNameValue)[keyof typeof PluginNameValue];
348
370
  export interface PostgreSQLSettings {
349
371
  AfterConnectScript?: string;
350
372
  CaptureDdls?: boolean;
@@ -367,15 +389,19 @@ export interface PostgreSQLSettings {
367
389
  TrimSpaceInChar?: boolean;
368
390
  MapBooleanAsBoolean?: boolean;
369
391
  }
370
- export declare enum RedisAuthTypeValue {
371
- AUTH_ROLE = "auth-role",
372
- AUTH_TOKEN = "auth-token",
373
- NONE = "none",
374
- }
375
- export declare enum SslSecurityProtocolValue {
376
- PLAINTEXT = "plaintext",
377
- SSL_ENCRYPTION = "ssl-encryption",
378
- }
392
+ export declare const RedisAuthTypeValue: {
393
+ readonly AUTH_ROLE: "auth-role";
394
+ readonly AUTH_TOKEN: "auth-token";
395
+ readonly NONE: "none";
396
+ };
397
+ export type RedisAuthTypeValue =
398
+ (typeof RedisAuthTypeValue)[keyof typeof RedisAuthTypeValue];
399
+ export declare const SslSecurityProtocolValue: {
400
+ readonly PLAINTEXT: "plaintext";
401
+ readonly SSL_ENCRYPTION: "ssl-encryption";
402
+ };
403
+ export type SslSecurityProtocolValue =
404
+ (typeof SslSecurityProtocolValue)[keyof typeof SslSecurityProtocolValue];
379
405
  export interface RedisSettings {
380
406
  ServerName: string | undefined;
381
407
  Port: number | undefined;
@@ -385,10 +411,12 @@ export interface RedisSettings {
385
411
  AuthPassword?: string;
386
412
  SslCaCertificateArn?: string;
387
413
  }
388
- export declare enum EncryptionModeValue {
389
- SSE_KMS = "sse-kms",
390
- SSE_S3 = "sse-s3",
391
- }
414
+ export declare const EncryptionModeValue: {
415
+ readonly SSE_KMS: "sse-kms";
416
+ readonly SSE_S3: "sse-s3";
417
+ };
418
+ export type EncryptionModeValue =
419
+ (typeof EncryptionModeValue)[keyof typeof EncryptionModeValue];
392
420
  export interface RedshiftSettings {
393
421
  AcceptAnyDate?: boolean;
394
422
  AfterConnectScript?: string;
@@ -422,46 +450,60 @@ export interface RedshiftSettings {
422
450
  SecretsManagerSecretId?: string;
423
451
  MapBooleanAsBoolean?: boolean;
424
452
  }
425
- export declare enum CannedAclForObjectsValue {
426
- AUTHENTICATED_READ = "authenticated-read",
427
- AWS_EXEC_READ = "aws-exec-read",
428
- BUCKET_OWNER_FULL_CONTROL = "bucket-owner-full-control",
429
- BUCKET_OWNER_READ = "bucket-owner-read",
430
- NONE = "none",
431
- PRIVATE = "private",
432
- PUBLIC_READ = "public-read",
433
- PUBLIC_READ_WRITE = "public-read-write",
434
- }
435
- export declare enum CompressionTypeValue {
436
- GZIP = "gzip",
437
- NONE = "none",
438
- }
439
- export declare enum DataFormatValue {
440
- CSV = "csv",
441
- PARQUET = "parquet",
442
- }
443
- export declare enum DatePartitionDelimiterValue {
444
- DASH = "DASH",
445
- NONE = "NONE",
446
- SLASH = "SLASH",
447
- UNDERSCORE = "UNDERSCORE",
448
- }
449
- export declare enum DatePartitionSequenceValue {
450
- DDMMYYYY = "DDMMYYYY",
451
- MMYYYYDD = "MMYYYYDD",
452
- YYYYMM = "YYYYMM",
453
- YYYYMMDD = "YYYYMMDD",
454
- YYYYMMDDHH = "YYYYMMDDHH",
455
- }
456
- export declare enum EncodingTypeValue {
457
- PLAIN = "plain",
458
- PLAIN_DICTIONARY = "plain-dictionary",
459
- RLE_DICTIONARY = "rle-dictionary",
460
- }
461
- export declare enum ParquetVersionValue {
462
- PARQUET_1_0 = "parquet-1-0",
463
- PARQUET_2_0 = "parquet-2-0",
464
- }
453
+ export declare const CannedAclForObjectsValue: {
454
+ readonly AUTHENTICATED_READ: "authenticated-read";
455
+ readonly AWS_EXEC_READ: "aws-exec-read";
456
+ readonly BUCKET_OWNER_FULL_CONTROL: "bucket-owner-full-control";
457
+ readonly BUCKET_OWNER_READ: "bucket-owner-read";
458
+ readonly NONE: "none";
459
+ readonly PRIVATE: "private";
460
+ readonly PUBLIC_READ: "public-read";
461
+ readonly PUBLIC_READ_WRITE: "public-read-write";
462
+ };
463
+ export type CannedAclForObjectsValue =
464
+ (typeof CannedAclForObjectsValue)[keyof typeof CannedAclForObjectsValue];
465
+ export declare const CompressionTypeValue: {
466
+ readonly GZIP: "gzip";
467
+ readonly NONE: "none";
468
+ };
469
+ export type CompressionTypeValue =
470
+ (typeof CompressionTypeValue)[keyof typeof CompressionTypeValue];
471
+ export declare const DataFormatValue: {
472
+ readonly CSV: "csv";
473
+ readonly PARQUET: "parquet";
474
+ };
475
+ export type DataFormatValue =
476
+ (typeof DataFormatValue)[keyof typeof DataFormatValue];
477
+ export declare const DatePartitionDelimiterValue: {
478
+ readonly DASH: "DASH";
479
+ readonly NONE: "NONE";
480
+ readonly SLASH: "SLASH";
481
+ readonly UNDERSCORE: "UNDERSCORE";
482
+ };
483
+ export type DatePartitionDelimiterValue =
484
+ (typeof DatePartitionDelimiterValue)[keyof typeof DatePartitionDelimiterValue];
485
+ export declare const DatePartitionSequenceValue: {
486
+ readonly DDMMYYYY: "DDMMYYYY";
487
+ readonly MMYYYYDD: "MMYYYYDD";
488
+ readonly YYYYMM: "YYYYMM";
489
+ readonly YYYYMMDD: "YYYYMMDD";
490
+ readonly YYYYMMDDHH: "YYYYMMDDHH";
491
+ };
492
+ export type DatePartitionSequenceValue =
493
+ (typeof DatePartitionSequenceValue)[keyof typeof DatePartitionSequenceValue];
494
+ export declare const EncodingTypeValue: {
495
+ readonly PLAIN: "plain";
496
+ readonly PLAIN_DICTIONARY: "plain-dictionary";
497
+ readonly RLE_DICTIONARY: "rle-dictionary";
498
+ };
499
+ export type EncodingTypeValue =
500
+ (typeof EncodingTypeValue)[keyof typeof EncodingTypeValue];
501
+ export declare const ParquetVersionValue: {
502
+ readonly PARQUET_1_0: "parquet-1-0";
503
+ readonly PARQUET_2_0: "parquet-2-0";
504
+ };
505
+ export type ParquetVersionValue =
506
+ (typeof ParquetVersionValue)[keyof typeof ParquetVersionValue];
465
507
  export interface S3Settings {
466
508
  ServiceAccessRoleArn?: string;
467
509
  ExternalTableDefinition?: string;
@@ -505,12 +547,14 @@ export interface S3Settings {
505
547
  ExpectedBucketOwner?: string;
506
548
  GlueCatalogGeneration?: boolean;
507
549
  }
508
- export declare enum DmsSslModeValue {
509
- NONE = "none",
510
- REQUIRE = "require",
511
- VERIFY_CA = "verify-ca",
512
- VERIFY_FULL = "verify-full",
513
- }
550
+ export declare const DmsSslModeValue: {
551
+ readonly NONE: "none";
552
+ readonly REQUIRE: "require";
553
+ readonly VERIFY_CA: "verify-ca";
554
+ readonly VERIFY_FULL: "verify-full";
555
+ };
556
+ export type DmsSslModeValue =
557
+ (typeof DmsSslModeValue)[keyof typeof DmsSslModeValue];
514
558
  export interface SybaseSettings {
515
559
  DatabaseName?: string;
516
560
  Password?: string;
@@ -827,11 +871,13 @@ export interface CreateReplicationSubnetGroupMessage {
827
871
  export interface CreateReplicationSubnetGroupResponse {
828
872
  ReplicationSubnetGroup?: ReplicationSubnetGroup;
829
873
  }
830
- export declare enum MigrationTypeValue {
831
- CDC = "cdc",
832
- FULL_LOAD = "full-load",
833
- FULL_LOAD_AND_CDC = "full-load-and-cdc",
834
- }
874
+ export declare const MigrationTypeValue: {
875
+ readonly CDC: "cdc";
876
+ readonly FULL_LOAD: "full-load";
877
+ readonly FULL_LOAD_AND_CDC: "full-load-and-cdc";
878
+ };
879
+ export type MigrationTypeValue =
880
+ (typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
835
881
  export interface CreateReplicationTaskMessage {
836
882
  ReplicationTaskIdentifier: string | undefined;
837
883
  SourceEndpointArn: string | undefined;
@@ -1028,12 +1074,14 @@ export interface DescribeEndpointSettingsMessage {
1028
1074
  MaxRecords?: number;
1029
1075
  Marker?: string;
1030
1076
  }
1031
- export declare enum EndpointSettingTypeValue {
1032
- BOOLEAN = "boolean",
1033
- ENUM = "enum",
1034
- INTEGER = "integer",
1035
- STRING = "string",
1036
- }
1077
+ export declare const EndpointSettingTypeValue: {
1078
+ readonly BOOLEAN: "boolean";
1079
+ readonly ENUM: "enum";
1080
+ readonly INTEGER: "integer";
1081
+ readonly STRING: "string";
1082
+ };
1083
+ export type EndpointSettingTypeValue =
1084
+ (typeof EndpointSettingTypeValue)[keyof typeof EndpointSettingTypeValue];
1037
1085
  export interface EndpointSetting {
1038
1086
  Name?: string;
1039
1087
  Type?: EndpointSettingTypeValue | string;
@@ -1076,9 +1124,10 @@ export interface EventCategoryGroup {
1076
1124
  export interface DescribeEventCategoriesResponse {
1077
1125
  EventCategoryGroupList?: EventCategoryGroup[];
1078
1126
  }
1079
- export declare enum SourceType {
1080
- replication_instance = "replication-instance",
1081
- }
1127
+ export declare const SourceType: {
1128
+ readonly replication_instance: "replication-instance";
1129
+ };
1130
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1082
1131
  export interface DescribeEventsMessage {
1083
1132
  SourceIdentifier?: string;
1084
1133
  SourceType?: SourceType | string;
@@ -1116,10 +1165,12 @@ export interface DescribeFleetAdvisorCollectorsRequest {
1116
1165
  MaxRecords?: number;
1117
1166
  NextToken?: string;
1118
1167
  }
1119
- export declare enum CollectorStatus {
1120
- ACTIVE = "ACTIVE",
1121
- UNREGISTERED = "UNREGISTERED",
1122
- }
1168
+ export declare const CollectorStatus: {
1169
+ readonly ACTIVE: "ACTIVE";
1170
+ readonly UNREGISTERED: "UNREGISTERED";
1171
+ };
1172
+ export type CollectorStatus =
1173
+ (typeof CollectorStatus)[keyof typeof CollectorStatus];
1123
1174
  export interface CollectorHealthCheck {
1124
1175
  CollectorStatus?: CollectorStatus | string;
1125
1176
  LocalCollectorS3Access?: boolean;
@@ -1130,11 +1181,12 @@ export interface InventoryData {
1130
1181
  NumberOfDatabases?: number;
1131
1182
  NumberOfSchemas?: number;
1132
1183
  }
1133
- export declare enum VersionStatus {
1134
- OUTDATED = "OUTDATED",
1135
- UNSUPPORTED = "UNSUPPORTED",
1136
- UP_TO_DATE = "UP_TO_DATE",
1137
- }
1184
+ export declare const VersionStatus: {
1185
+ readonly OUTDATED: "OUTDATED";
1186
+ readonly UNSUPPORTED: "UNSUPPORTED";
1187
+ readonly UP_TO_DATE: "UP_TO_DATE";
1188
+ };
1189
+ export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
1138
1190
  export interface CollectorResponse {
1139
1191
  CollectorReferencedId?: string;
1140
1192
  CollectorName?: string;
@@ -1255,10 +1307,12 @@ export interface DescribeOrderableReplicationInstancesMessage {
1255
1307
  MaxRecords?: number;
1256
1308
  Marker?: string;
1257
1309
  }
1258
- export declare enum ReleaseStatusValues {
1259
- BETA = "beta",
1260
- PROD = "prod",
1261
- }
1310
+ export declare const ReleaseStatusValues: {
1311
+ readonly BETA: "beta";
1312
+ readonly PROD: "prod";
1313
+ };
1314
+ export type ReleaseStatusValues =
1315
+ (typeof ReleaseStatusValues)[keyof typeof ReleaseStatusValues];
1262
1316
  export interface OrderableReplicationInstance {
1263
1317
  EngineVersion?: string;
1264
1318
  ReplicationInstanceClass?: string;
@@ -1347,11 +1401,13 @@ export interface DescribeRecommendationsResponse {
1347
1401
  export interface DescribeRefreshSchemasStatusMessage {
1348
1402
  EndpointArn: string | undefined;
1349
1403
  }
1350
- export declare enum RefreshSchemasStatusTypeValue {
1351
- FAILED = "failed",
1352
- REFRESHING = "refreshing",
1353
- SUCCESSFUL = "successful",
1354
- }
1404
+ export declare const RefreshSchemasStatusTypeValue: {
1405
+ readonly FAILED: "failed";
1406
+ readonly REFRESHING: "refreshing";
1407
+ readonly SUCCESSFUL: "successful";
1408
+ };
1409
+ export type RefreshSchemasStatusTypeValue =
1410
+ (typeof RefreshSchemasStatusTypeValue)[keyof typeof RefreshSchemasStatusTypeValue];
1355
1411
  export interface RefreshSchemasStatus {
1356
1412
  EndpointArn?: string;
1357
1413
  ReplicationInstanceArn?: string;
@@ -1638,10 +1694,12 @@ export interface RefreshSchemasMessage {
1638
1694
  export interface RefreshSchemasResponse {
1639
1695
  RefreshSchemasStatus?: RefreshSchemasStatus;
1640
1696
  }
1641
- export declare enum ReloadOptionValue {
1642
- DATA_RELOAD = "data-reload",
1643
- VALIDATE_ONLY = "validate-only",
1644
- }
1697
+ export declare const ReloadOptionValue: {
1698
+ readonly DATA_RELOAD: "data-reload";
1699
+ readonly VALIDATE_ONLY: "validate-only";
1700
+ };
1701
+ export type ReloadOptionValue =
1702
+ (typeof ReloadOptionValue)[keyof typeof ReloadOptionValue];
1645
1703
  export interface TableToReload {
1646
1704
  SchemaName: string | undefined;
1647
1705
  TableName: string | undefined;
@@ -1667,11 +1725,13 @@ export interface StartRecommendationsRequest {
1667
1725
  DatabaseId: string | undefined;
1668
1726
  Settings: RecommendationSettings | undefined;
1669
1727
  }
1670
- export declare enum StartReplicationTaskTypeValue {
1671
- RELOAD_TARGET = "reload-target",
1672
- RESUME_PROCESSING = "resume-processing",
1673
- START_REPLICATION = "start-replication",
1674
- }
1728
+ export declare const StartReplicationTaskTypeValue: {
1729
+ readonly RELOAD_TARGET: "reload-target";
1730
+ readonly RESUME_PROCESSING: "resume-processing";
1731
+ readonly START_REPLICATION: "start-replication";
1732
+ };
1733
+ export type StartReplicationTaskTypeValue =
1734
+ (typeof StartReplicationTaskTypeValue)[keyof typeof StartReplicationTaskTypeValue];
1675
1735
  export interface StartReplicationTaskMessage {
1676
1736
  ReplicationTaskArn: string | undefined;
1677
1737
  StartReplicationTaskType: StartReplicationTaskTypeValue | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-database-migration-service",
3
3
  "description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,43 +21,43 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
56
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
+ "@aws-sdk/util-waiter": "3.303.0",
57
57
  "tslib": "^2.5.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "concurrently": "7.0.0",