@aws-sdk/client-database-migration-service 3.428.0 → 3.429.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.
|
@@ -532,7 +532,7 @@ export interface DocDbDataProviderSettings {
|
|
|
532
532
|
* <p>The SSL mode used to connect to the DocumentDB data provider.
|
|
533
533
|
* The default value is <code>none</code>.</p>
|
|
534
534
|
*/
|
|
535
|
-
SslMode?: DmsSslModeValue
|
|
535
|
+
SslMode?: DmsSslModeValue;
|
|
536
536
|
/**
|
|
537
537
|
* @public
|
|
538
538
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -559,7 +559,7 @@ export interface MariaDbDataProviderSettings {
|
|
|
559
559
|
* <p>The SSL mode used to connect to the MariaDB data provider.
|
|
560
560
|
* The default value is <code>none</code>.</p>
|
|
561
561
|
*/
|
|
562
|
-
SslMode?: DmsSslModeValue
|
|
562
|
+
SslMode?: DmsSslModeValue;
|
|
563
563
|
/**
|
|
564
564
|
* @public
|
|
565
565
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -591,7 +591,7 @@ export interface MicrosoftSqlServerDataProviderSettings {
|
|
|
591
591
|
* <p>The SSL mode used to connect to the Microsoft SQL Server data provider.
|
|
592
592
|
* The default value is <code>none</code>.</p>
|
|
593
593
|
*/
|
|
594
|
-
SslMode?: DmsSslModeValue
|
|
594
|
+
SslMode?: DmsSslModeValue;
|
|
595
595
|
/**
|
|
596
596
|
* @public
|
|
597
597
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -648,7 +648,7 @@ export interface MongoDbDataProviderSettings {
|
|
|
648
648
|
* <p>The SSL mode used to connect to the MongoDB data provider.
|
|
649
649
|
* The default value is <code>none</code>.</p>
|
|
650
650
|
*/
|
|
651
|
-
SslMode?: DmsSslModeValue
|
|
651
|
+
SslMode?: DmsSslModeValue;
|
|
652
652
|
/**
|
|
653
653
|
* @public
|
|
654
654
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -658,7 +658,7 @@ export interface MongoDbDataProviderSettings {
|
|
|
658
658
|
* @public
|
|
659
659
|
* <p>The authentication type for the database connection. Valid values are PASSWORD or NO.</p>
|
|
660
660
|
*/
|
|
661
|
-
AuthType?: AuthTypeValue
|
|
661
|
+
AuthType?: AuthTypeValue;
|
|
662
662
|
/**
|
|
663
663
|
* @public
|
|
664
664
|
* <p> The MongoDB database name. This setting isn't used when <code>AuthType</code> is
|
|
@@ -670,7 +670,7 @@ export interface MongoDbDataProviderSettings {
|
|
|
670
670
|
* @public
|
|
671
671
|
* <p>The authentication method for connecting to the data provider. Valid values are DEFAULT, MONGODB_CR, or SCRAM_SHA_1.</p>
|
|
672
672
|
*/
|
|
673
|
-
AuthMechanism?: AuthMechanismValue
|
|
673
|
+
AuthMechanism?: AuthMechanismValue;
|
|
674
674
|
}
|
|
675
675
|
/**
|
|
676
676
|
* @public
|
|
@@ -692,7 +692,7 @@ export interface MySqlDataProviderSettings {
|
|
|
692
692
|
* <p>The SSL mode used to connect to the MySQL data provider.
|
|
693
693
|
* The default value is <code>none</code>.</p>
|
|
694
694
|
*/
|
|
695
|
-
SslMode?: DmsSslModeValue
|
|
695
|
+
SslMode?: DmsSslModeValue;
|
|
696
696
|
/**
|
|
697
697
|
* @public
|
|
698
698
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -724,7 +724,7 @@ export interface OracleDataProviderSettings {
|
|
|
724
724
|
* <p>The SSL mode used to connect to the Oracle data provider.
|
|
725
725
|
* The default value is <code>none</code>.</p>
|
|
726
726
|
*/
|
|
727
|
-
SslMode?: DmsSslModeValue
|
|
727
|
+
SslMode?: DmsSslModeValue;
|
|
728
728
|
/**
|
|
729
729
|
* @public
|
|
730
730
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -789,7 +789,7 @@ export interface PostgreSqlDataProviderSettings {
|
|
|
789
789
|
* <p>The SSL mode used to connect to the PostgreSQL data provider.
|
|
790
790
|
* The default value is <code>none</code>.</p>
|
|
791
791
|
*/
|
|
792
|
-
SslMode?: DmsSslModeValue
|
|
792
|
+
SslMode?: DmsSslModeValue;
|
|
793
793
|
/**
|
|
794
794
|
* @public
|
|
795
795
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
@@ -1149,7 +1149,7 @@ export interface DocDbSettings {
|
|
|
1149
1149
|
* <p>Default value is <code>"none"</code>. Specify <code>"none"</code> to use document mode.
|
|
1150
1150
|
* Specify <code>"one"</code> to use table mode.</p>
|
|
1151
1151
|
*/
|
|
1152
|
-
NestingLevel?: NestingLevelValue
|
|
1152
|
+
NestingLevel?: NestingLevelValue;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* @public
|
|
1155
1155
|
* <p> Specifies the document ID. Use this setting when <code>NestingLevel</code> is set to
|
|
@@ -1340,7 +1340,7 @@ export interface GcpMySQLSettings {
|
|
|
1340
1340
|
* <p>Example: <code>targetDbType=MULTIPLE_DATABASES</code>
|
|
1341
1341
|
* </p>
|
|
1342
1342
|
*/
|
|
1343
|
-
TargetDbType?: TargetDbType
|
|
1343
|
+
TargetDbType?: TargetDbType;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* @public
|
|
1346
1346
|
* <p>Specifies the maximum size (in KB) of any .csv file used to transfer data to a MySQL-compatible database.</p>
|
|
@@ -1569,7 +1569,7 @@ export interface KafkaSettings {
|
|
|
1569
1569
|
* <code>JSON</code> (default) or <code>JSON_UNFORMATTED</code> (a single line with no
|
|
1570
1570
|
* tab).</p>
|
|
1571
1571
|
*/
|
|
1572
|
-
MessageFormat?: MessageFormatValue
|
|
1572
|
+
MessageFormat?: MessageFormatValue;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* @public
|
|
1575
1575
|
* <p>Provides detailed transaction information from the source database. This information
|
|
@@ -1624,7 +1624,7 @@ export interface KafkaSettings {
|
|
|
1624
1624
|
* <code>ssl-encryption</code>, <code>ssl-authentication</code>, and <code>sasl-ssl</code>.
|
|
1625
1625
|
* <code>sasl-ssl</code> requires <code>SaslUsername</code> and <code>SaslPassword</code>.</p>
|
|
1626
1626
|
*/
|
|
1627
|
-
SecurityProtocol?: KafkaSecurityProtocol
|
|
1627
|
+
SecurityProtocol?: KafkaSecurityProtocol;
|
|
1628
1628
|
/**
|
|
1629
1629
|
* @public
|
|
1630
1630
|
* <p>The Amazon Resource Name (ARN) of the client certificate used to securely connect to a Kafka target endpoint.</p>
|
|
@@ -1675,13 +1675,13 @@ export interface KafkaSettings {
|
|
|
1675
1675
|
* parameter to <code>PLAIN.</code>
|
|
1676
1676
|
* </p>
|
|
1677
1677
|
*/
|
|
1678
|
-
SaslMechanism?: KafkaSaslMechanism
|
|
1678
|
+
SaslMechanism?: KafkaSaslMechanism;
|
|
1679
1679
|
/**
|
|
1680
1680
|
* @public
|
|
1681
1681
|
* <p>Sets hostname verification
|
|
1682
1682
|
* for the certificate. This setting is supported in DMS version 3.5.1 and later. </p>
|
|
1683
1683
|
*/
|
|
1684
|
-
SslEndpointIdentificationAlgorithm?: KafkaSslEndpointIdentificationAlgorithm
|
|
1684
|
+
SslEndpointIdentificationAlgorithm?: KafkaSslEndpointIdentificationAlgorithm;
|
|
1685
1685
|
}
|
|
1686
1686
|
/**
|
|
1687
1687
|
* @public
|
|
@@ -1700,7 +1700,7 @@ export interface KinesisSettings {
|
|
|
1700
1700
|
* <p>The output format for the records created on the endpoint. The message format is
|
|
1701
1701
|
* <code>JSON</code> (default) or <code>JSON_UNFORMATTED</code> (a single line with no tab).</p>
|
|
1702
1702
|
*/
|
|
1703
|
-
MessageFormat?: MessageFormatValue
|
|
1703
|
+
MessageFormat?: MessageFormatValue;
|
|
1704
1704
|
/**
|
|
1705
1705
|
* @public
|
|
1706
1706
|
* <p>The Amazon Resource Name (ARN) for the IAM role
|
|
@@ -1863,7 +1863,7 @@ export interface MicrosoftSQLServerSettings {
|
|
|
1863
1863
|
* time. Therefore, if you need to run parallel DMS tasks
|
|
1864
1864
|
* against the same database, use the default method.</p>
|
|
1865
1865
|
*/
|
|
1866
|
-
SafeguardPolicy?: SafeguardPolicy
|
|
1866
|
+
SafeguardPolicy?: SafeguardPolicy;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* @public
|
|
1869
1869
|
* <p>Fully qualified domain name of the endpoint. For an Amazon RDS SQL Server instance, this is the
|
|
@@ -1927,7 +1927,7 @@ export interface MicrosoftSQLServerSettings {
|
|
|
1927
1927
|
* @public
|
|
1928
1928
|
* <p>Indicates the mode used to fetch CDC data.</p>
|
|
1929
1929
|
*/
|
|
1930
|
-
TlogAccessMode?: TlogAccessMode
|
|
1930
|
+
TlogAccessMode?: TlogAccessMode;
|
|
1931
1931
|
/**
|
|
1932
1932
|
* @public
|
|
1933
1933
|
* <p>Forces LOB lookup on inline LOB.</p>
|
|
@@ -1972,7 +1972,7 @@ export interface MongoDbSettings {
|
|
|
1972
1972
|
* <p>When when set to <code>"no"</code>, user name and password parameters are not used and
|
|
1973
1973
|
* can be empty. </p>
|
|
1974
1974
|
*/
|
|
1975
|
-
AuthType?: AuthTypeValue
|
|
1975
|
+
AuthType?: AuthTypeValue;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* @public
|
|
1978
1978
|
* <p> The authentication mechanism you use to access the MongoDB source endpoint.</p>
|
|
@@ -1981,14 +1981,14 @@ export interface MongoDbSettings {
|
|
|
1981
1981
|
* <code>"scram_sha_1"</code>. This setting isn't used when <code>AuthType</code> is
|
|
1982
1982
|
* set to <code>"no"</code>.</p>
|
|
1983
1983
|
*/
|
|
1984
|
-
AuthMechanism?: AuthMechanismValue
|
|
1984
|
+
AuthMechanism?: AuthMechanismValue;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* @public
|
|
1987
1987
|
* <p> Specifies either document or table mode. </p>
|
|
1988
1988
|
* <p>Default value is <code>"none"</code>. Specify <code>"none"</code> to use document mode.
|
|
1989
1989
|
* Specify <code>"one"</code> to use table mode.</p>
|
|
1990
1990
|
*/
|
|
1991
|
-
NestingLevel?: NestingLevelValue
|
|
1991
|
+
NestingLevel?: NestingLevelValue;
|
|
1992
1992
|
/**
|
|
1993
1993
|
* @public
|
|
1994
1994
|
* <p> Specifies the document ID. Use this setting when <code>NestingLevel</code> is set to
|
|
@@ -2117,7 +2117,7 @@ export interface MySQLSettings {
|
|
|
2117
2117
|
* <p>Example: <code>targetDbType=MULTIPLE_DATABASES</code>
|
|
2118
2118
|
* </p>
|
|
2119
2119
|
*/
|
|
2120
|
-
TargetDbType?: TargetDbType
|
|
2120
|
+
TargetDbType?: TargetDbType;
|
|
2121
2121
|
/**
|
|
2122
2122
|
* @public
|
|
2123
2123
|
* <p>Specifies the maximum size (in KB) of any .csv file used to
|
|
@@ -2458,7 +2458,7 @@ export interface OracleSettings {
|
|
|
2458
2458
|
* <p>Example: <code>charLengthSemantics=CHAR;</code>
|
|
2459
2459
|
* </p>
|
|
2460
2460
|
*/
|
|
2461
|
-
CharLengthSemantics?: CharLengthSemantics
|
|
2461
|
+
CharLengthSemantics?: CharLengthSemantics;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* @public
|
|
2464
2464
|
* <p>Database name for the endpoint.</p>
|
|
@@ -2840,7 +2840,7 @@ export interface PostgreSQLSettings {
|
|
|
2840
2840
|
* @public
|
|
2841
2841
|
* <p>Specifies the plugin to use to create a replication slot.</p>
|
|
2842
2842
|
*/
|
|
2843
|
-
PluginName?: PluginNameValue
|
|
2843
|
+
PluginName?: PluginNameValue;
|
|
2844
2844
|
/**
|
|
2845
2845
|
* @public
|
|
2846
2846
|
* <p>The full Amazon Resource Name (ARN) of the IAM role that specifies DMS as the
|
|
@@ -2887,12 +2887,12 @@ export interface PostgreSQLSettings {
|
|
|
2887
2887
|
* @public
|
|
2888
2888
|
* <p>When true, DMS migrates LONG values as VARCHAR.</p>
|
|
2889
2889
|
*/
|
|
2890
|
-
MapLongVarcharAs?: LongVarcharMappingType
|
|
2890
|
+
MapLongVarcharAs?: LongVarcharMappingType;
|
|
2891
2891
|
/**
|
|
2892
2892
|
* @public
|
|
2893
2893
|
* <p>Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.</p>
|
|
2894
2894
|
*/
|
|
2895
|
-
DatabaseMode?: DatabaseMode
|
|
2895
|
+
DatabaseMode?: DatabaseMode;
|
|
2896
2896
|
/**
|
|
2897
2897
|
* @public
|
|
2898
2898
|
* <p>The Babelfish for Aurora PostgreSQL database name for the endpoint.</p>
|
|
@@ -2950,7 +2950,7 @@ export interface RedisSettings {
|
|
|
2950
2950
|
* <p>The <code>plaintext</code> option doesn't provide Transport Layer Security (TLS)
|
|
2951
2951
|
* encryption for traffic between endpoint and database.</p>
|
|
2952
2952
|
*/
|
|
2953
|
-
SslSecurityProtocol?: SslSecurityProtocolValue
|
|
2953
|
+
SslSecurityProtocol?: SslSecurityProtocolValue;
|
|
2954
2954
|
/**
|
|
2955
2955
|
* @public
|
|
2956
2956
|
* <p>The type of authentication to perform when connecting to a Redis target. Options include
|
|
@@ -2959,7 +2959,7 @@ export interface RedisSettings {
|
|
|
2959
2959
|
* <code>auth-role</code> option requires <code>AuthUserName</code> and <code>AuthPassword</code> values
|
|
2960
2960
|
* to be provided.</p>
|
|
2961
2961
|
*/
|
|
2962
|
-
AuthType?: RedisAuthTypeValue
|
|
2962
|
+
AuthType?: RedisAuthTypeValue;
|
|
2963
2963
|
/**
|
|
2964
2964
|
* @public
|
|
2965
2965
|
* <p>The user name provided with the <code>auth-role</code> option of the
|
|
@@ -3092,7 +3092,7 @@ export interface RedshiftSettings {
|
|
|
3092
3092
|
* <code>"s3:PutObject", "s3:ListBucket"</code>
|
|
3093
3093
|
* </p>
|
|
3094
3094
|
*/
|
|
3095
|
-
EncryptionMode?: EncryptionModeValue
|
|
3095
|
+
EncryptionMode?: EncryptionModeValue;
|
|
3096
3096
|
/**
|
|
3097
3097
|
* @public
|
|
3098
3098
|
* <p>This setting is only valid for a full-load migration task. Set <code>ExplicitIds</code>
|
|
@@ -3390,7 +3390,7 @@ export interface S3Settings {
|
|
|
3390
3390
|
* the target files. Either set this parameter to NONE (the default) or don't use it to leave the files uncompressed.
|
|
3391
3391
|
* This parameter applies to both .csv and .parquet file formats. </p>
|
|
3392
3392
|
*/
|
|
3393
|
-
CompressionType?: CompressionTypeValue
|
|
3393
|
+
CompressionType?: CompressionTypeValue;
|
|
3394
3394
|
/**
|
|
3395
3395
|
* @public
|
|
3396
3396
|
* <p>The type of server-side encryption that you want to use for your data. This encryption
|
|
@@ -3463,7 +3463,7 @@ export interface S3Settings {
|
|
|
3463
3463
|
* </li>
|
|
3464
3464
|
* </ul>
|
|
3465
3465
|
*/
|
|
3466
|
-
EncryptionMode?: EncryptionModeValue
|
|
3466
|
+
EncryptionMode?: EncryptionModeValue;
|
|
3467
3467
|
/**
|
|
3468
3468
|
* @public
|
|
3469
3469
|
* <p>If you are using <code>SSE_KMS</code> for the <code>EncryptionMode</code>, provide the
|
|
@@ -3493,7 +3493,7 @@ export interface S3Settings {
|
|
|
3493
3493
|
* </li>
|
|
3494
3494
|
* </ul>
|
|
3495
3495
|
*/
|
|
3496
|
-
DataFormat?: DataFormatValue
|
|
3496
|
+
DataFormat?: DataFormatValue;
|
|
3497
3497
|
/**
|
|
3498
3498
|
* @public
|
|
3499
3499
|
* <p>The type of encoding you are using: </p>
|
|
@@ -3516,7 +3516,7 @@ export interface S3Settings {
|
|
|
3516
3516
|
* </li>
|
|
3517
3517
|
* </ul>
|
|
3518
3518
|
*/
|
|
3519
|
-
EncodingType?: EncodingTypeValue
|
|
3519
|
+
EncodingType?: EncodingTypeValue;
|
|
3520
3520
|
/**
|
|
3521
3521
|
* @public
|
|
3522
3522
|
* <p>The maximum size of an encoded dictionary page of a column. If the dictionary page
|
|
@@ -3546,7 +3546,7 @@ export interface S3Settings {
|
|
|
3546
3546
|
* <p>The version of the Apache Parquet format that you want to use: <code>parquet_1_0</code>
|
|
3547
3547
|
* (the default) or <code>parquet_2_0</code>.</p>
|
|
3548
3548
|
*/
|
|
3549
|
-
ParquetVersion?: ParquetVersionValue
|
|
3549
|
+
ParquetVersion?: ParquetVersionValue;
|
|
3550
3550
|
/**
|
|
3551
3551
|
* @public
|
|
3552
3552
|
* <p>A value that enables statistics for Parquet pages and row groups. Choose
|
|
@@ -3701,13 +3701,13 @@ export interface S3Settings {
|
|
|
3701
3701
|
* <p>Identifies the sequence of the date format to use during folder partitioning. The default value is
|
|
3702
3702
|
* <code>YYYYMMDD</code>. Use this parameter when <code>DatePartitionedEnabled</code> is set to <code>true</code>.</p>
|
|
3703
3703
|
*/
|
|
3704
|
-
DatePartitionSequence?: DatePartitionSequenceValue
|
|
3704
|
+
DatePartitionSequence?: DatePartitionSequenceValue;
|
|
3705
3705
|
/**
|
|
3706
3706
|
* @public
|
|
3707
3707
|
* <p>Specifies a date separating delimiter to use during folder partitioning. The default value is
|
|
3708
3708
|
* <code>SLASH</code>. Use this parameter when <code>DatePartitionedEnabled</code> is set to <code>true</code>.</p>
|
|
3709
3709
|
*/
|
|
3710
|
-
DatePartitionDelimiter?: DatePartitionDelimiterValue
|
|
3710
|
+
DatePartitionDelimiter?: DatePartitionDelimiterValue;
|
|
3711
3711
|
/**
|
|
3712
3712
|
* @public
|
|
3713
3713
|
* <p>This setting applies if the S3 output files during a change data capture (CDC) load are
|
|
@@ -3799,7 +3799,7 @@ export interface S3Settings {
|
|
|
3799
3799
|
* AWS_EXEC_READ, BUCKET_OWNER_READ, and
|
|
3800
3800
|
* BUCKET_OWNER_FULL_CONTROL.</p>
|
|
3801
3801
|
*/
|
|
3802
|
-
CannedAclForObjects?: CannedAclForObjectsValue
|
|
3802
|
+
CannedAclForObjects?: CannedAclForObjectsValue;
|
|
3803
3803
|
/**
|
|
3804
3804
|
* @public
|
|
3805
3805
|
* <p>An optional parameter that, when set to <code>true</code> or <code>y</code>, you can use
|
|
@@ -4029,7 +4029,7 @@ export interface CreateEndpointMessage {
|
|
|
4029
4029
|
* @public
|
|
4030
4030
|
* <p>The type of endpoint. Valid values are <code>source</code> and <code>target</code>.</p>
|
|
4031
4031
|
*/
|
|
4032
|
-
EndpointType: ReplicationEndpointTypeValue |
|
|
4032
|
+
EndpointType: ReplicationEndpointTypeValue | undefined;
|
|
4033
4033
|
/**
|
|
4034
4034
|
* @public
|
|
4035
4035
|
* <p>The type of engine for the endpoint. Valid values, depending on the
|
|
@@ -4102,7 +4102,7 @@ export interface CreateEndpointMessage {
|
|
|
4102
4102
|
* <p>The Secure Sockets Layer (SSL) mode to use for the SSL connection. The default is <code>none</code>
|
|
4103
4103
|
* </p>
|
|
4104
4104
|
*/
|
|
4105
|
-
SslMode?: DmsSslModeValue
|
|
4105
|
+
SslMode?: DmsSslModeValue;
|
|
4106
4106
|
/**
|
|
4107
4107
|
* @public
|
|
4108
4108
|
* <p> The Amazon Resource Name (ARN) for the service access role that you want to use to
|
|
@@ -4329,7 +4329,7 @@ export interface Endpoint {
|
|
|
4329
4329
|
* @public
|
|
4330
4330
|
* <p>The type of endpoint. Valid values are <code>source</code> and <code>target</code>.</p>
|
|
4331
4331
|
*/
|
|
4332
|
-
EndpointType?: ReplicationEndpointTypeValue
|
|
4332
|
+
EndpointType?: ReplicationEndpointTypeValue;
|
|
4333
4333
|
/**
|
|
4334
4334
|
* @public
|
|
4335
4335
|
* <p>The database engine name. Valid values, depending on the EndpointType, include
|
|
@@ -4401,7 +4401,7 @@ export interface Endpoint {
|
|
|
4401
4401
|
* @public
|
|
4402
4402
|
* <p>The SSL mode used to connect to the endpoint. The default value is <code>none</code>.</p>
|
|
4403
4403
|
*/
|
|
4404
|
-
SslMode?: DmsSslModeValue
|
|
4404
|
+
SslMode?: DmsSslModeValue;
|
|
4405
4405
|
/**
|
|
4406
4406
|
* @public
|
|
4407
4407
|
* <p>The Amazon Resource Name (ARN) used by the service to access the IAM role.
|
|
@@ -5327,7 +5327,7 @@ export interface CreateReplicationConfigMessage {
|
|
|
5327
5327
|
* </li>
|
|
5328
5328
|
* </ul>
|
|
5329
5329
|
*/
|
|
5330
|
-
ReplicationType: MigrationTypeValue |
|
|
5330
|
+
ReplicationType: MigrationTypeValue | undefined;
|
|
5331
5331
|
/**
|
|
5332
5332
|
* @public
|
|
5333
5333
|
* <p>JSON table mappings for DMS Serverless replications that are provisioned
|
|
@@ -5399,7 +5399,7 @@ export interface ReplicationConfig {
|
|
|
5399
5399
|
* @public
|
|
5400
5400
|
* <p>The type of the replication.</p>
|
|
5401
5401
|
*/
|
|
5402
|
-
ReplicationType?: MigrationTypeValue
|
|
5402
|
+
ReplicationType?: MigrationTypeValue;
|
|
5403
5403
|
/**
|
|
5404
5404
|
* @public
|
|
5405
5405
|
* <p>Configuration parameters for provisioning an DMS serverless replication.</p>
|
|
@@ -6119,7 +6119,7 @@ export interface CreateReplicationTaskMessage {
|
|
|
6119
6119
|
* <p>The migration type. Valid values: <code>full-load</code> | <code>cdc</code> | <code>full-load-and-cdc</code>
|
|
6120
6120
|
* </p>
|
|
6121
6121
|
*/
|
|
6122
|
-
MigrationType: MigrationTypeValue |
|
|
6122
|
+
MigrationType: MigrationTypeValue | undefined;
|
|
6123
6123
|
/**
|
|
6124
6124
|
* @public
|
|
6125
6125
|
* <p>The table mappings for the task, in JSON format. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.html">Using Table
|
|
@@ -6302,7 +6302,7 @@ export interface ReplicationTask {
|
|
|
6302
6302
|
* @public
|
|
6303
6303
|
* <p>The type of migration.</p>
|
|
6304
6304
|
*/
|
|
6305
|
-
MigrationType?: MigrationTypeValue
|
|
6305
|
+
MigrationType?: MigrationTypeValue;
|
|
6306
6306
|
/**
|
|
6307
6307
|
* @public
|
|
6308
6308
|
* <p>Table mappings specified in the task.</p>
|
|
@@ -7079,7 +7079,7 @@ export interface DescribeApplicableIndividualAssessmentsMessage {
|
|
|
7079
7079
|
* @public
|
|
7080
7080
|
* <p>Name of the migration type that each provided individual assessment must support.</p>
|
|
7081
7081
|
*/
|
|
7082
|
-
MigrationType?: MigrationTypeValue
|
|
7082
|
+
MigrationType?: MigrationTypeValue;
|
|
7083
7083
|
/**
|
|
7084
7084
|
* @public
|
|
7085
7085
|
* <p>Maximum number of records to include in the response. If more records exist than the
|
|
@@ -7396,7 +7396,7 @@ export interface EndpointSetting {
|
|
|
7396
7396
|
* @public
|
|
7397
7397
|
* <p>The type of endpoint. Valid values are <code>source</code> and <code>target</code>.</p>
|
|
7398
7398
|
*/
|
|
7399
|
-
Type?: EndpointSettingTypeValue
|
|
7399
|
+
Type?: EndpointSettingTypeValue;
|
|
7400
7400
|
/**
|
|
7401
7401
|
* @public
|
|
7402
7402
|
* <p>Enumerated values to use for this endpoint.</p>
|
|
@@ -7506,7 +7506,7 @@ export interface SupportedEndpointType {
|
|
|
7506
7506
|
* @public
|
|
7507
7507
|
* <p>The type of endpoint. Valid values are <code>source</code> and <code>target</code>.</p>
|
|
7508
7508
|
*/
|
|
7509
|
-
EndpointType?: ReplicationEndpointTypeValue
|
|
7509
|
+
EndpointType?: ReplicationEndpointTypeValue;
|
|
7510
7510
|
/**
|
|
7511
7511
|
* @public
|
|
7512
7512
|
* <p>The earliest DMS engine version that supports this endpoint engine. Note that endpoint engines released with DMS versions earlier than 3.1.1 do not return a value for this parameter.</p>
|
|
@@ -7587,7 +7587,7 @@ export interface EngineVersion {
|
|
|
7587
7587
|
* @public
|
|
7588
7588
|
* <p>The release status of the replication instance version.</p>
|
|
7589
7589
|
*/
|
|
7590
|
-
ReleaseStatus?: ReleaseStatusValues
|
|
7590
|
+
ReleaseStatus?: ReleaseStatusValues;
|
|
7591
7591
|
/**
|
|
7592
7592
|
* @public
|
|
7593
7593
|
* <p>The date when the replication instance version became publicly available.</p>
|
|
@@ -7708,7 +7708,7 @@ export interface DescribeEventsMessage {
|
|
|
7708
7708
|
* <p>The type of DMS resource that generates events.</p>
|
|
7709
7709
|
* <p>Valid values: replication-instance | replication-task</p>
|
|
7710
7710
|
*/
|
|
7711
|
-
SourceType?: SourceType
|
|
7711
|
+
SourceType?: SourceType;
|
|
7712
7712
|
/**
|
|
7713
7713
|
* @public
|
|
7714
7714
|
* <p>The start time for the events to be listed.</p>
|
|
@@ -7768,7 +7768,7 @@ export interface Event {
|
|
|
7768
7768
|
* <p> The type of DMS resource that generates events. </p>
|
|
7769
7769
|
* <p>Valid values: replication-instance | endpoint | replication-task</p>
|
|
7770
7770
|
*/
|
|
7771
|
-
SourceType?: SourceType
|
|
7771
|
+
SourceType?: SourceType;
|
|
7772
7772
|
/**
|
|
7773
7773
|
* @public
|
|
7774
7774
|
* <p>The event message.</p>
|
|
@@ -8053,7 +8053,7 @@ export interface CollectorHealthCheck {
|
|
|
8053
8053
|
* @public
|
|
8054
8054
|
* <p>The status of the Fleet Advisor collector.</p>
|
|
8055
8055
|
*/
|
|
8056
|
-
CollectorStatus?: CollectorStatus
|
|
8056
|
+
CollectorStatus?: CollectorStatus;
|
|
8057
8057
|
/**
|
|
8058
8058
|
* @public
|
|
8059
8059
|
* <p>Whether the local collector can access its Amazon S3 bucket.</p>
|
|
@@ -8126,7 +8126,7 @@ export interface CollectorResponse {
|
|
|
8126
8126
|
* @public
|
|
8127
8127
|
* <p>Whether the collector version is up to date.</p>
|
|
8128
8128
|
*/
|
|
8129
|
-
VersionStatus?: VersionStatus
|
|
8129
|
+
VersionStatus?: VersionStatus;
|
|
8130
8130
|
/**
|
|
8131
8131
|
* @public
|
|
8132
8132
|
* <p>A summary description of the Fleet Advisor collector.</p>
|
|
@@ -9193,7 +9193,7 @@ export interface OrderableReplicationInstance {
|
|
|
9193
9193
|
* <p>DMS supports the <code>ReleaseStatus</code> parameter in versions 3.1.4 and later.</p>
|
|
9194
9194
|
* </note>
|
|
9195
9195
|
*/
|
|
9196
|
-
ReleaseStatus?: ReleaseStatusValues
|
|
9196
|
+
ReleaseStatus?: ReleaseStatusValues;
|
|
9197
9197
|
}
|
|
9198
9198
|
/**
|
|
9199
9199
|
* @public
|
|
@@ -9644,7 +9644,7 @@ export interface RefreshSchemasStatus {
|
|
|
9644
9644
|
* @public
|
|
9645
9645
|
* <p>The status of the schema.</p>
|
|
9646
9646
|
*/
|
|
9647
|
-
Status?: RefreshSchemasStatusTypeValue
|
|
9647
|
+
Status?: RefreshSchemasStatusTypeValue;
|
|
9648
9648
|
/**
|
|
9649
9649
|
* @public
|
|
9650
9650
|
* <p>The date the schema was last refreshed.</p>
|
|
@@ -9975,7 +9975,7 @@ export interface Replication {
|
|
|
9975
9975
|
* @public
|
|
9976
9976
|
* <p>The type of the serverless replication.</p>
|
|
9977
9977
|
*/
|
|
9978
|
-
ReplicationType?: MigrationTypeValue
|
|
9978
|
+
ReplicationType?: MigrationTypeValue;
|
|
9979
9979
|
/**
|
|
9980
9980
|
* @public
|
|
9981
9981
|
* <p>The current status of the serverless replication.</p>
|
|
@@ -10853,7 +10853,7 @@ export interface ExportMetadataModelAssessmentMessage {
|
|
|
10853
10853
|
* @public
|
|
10854
10854
|
* <p>The file format of the assessment file.</p>
|
|
10855
10855
|
*/
|
|
10856
|
-
AssessmentReportTypes?:
|
|
10856
|
+
AssessmentReportTypes?: AssessmentReportType[];
|
|
10857
10857
|
}
|
|
10858
10858
|
/**
|
|
10859
10859
|
* @public
|
|
@@ -83,7 +83,7 @@ export interface ModifyEndpointMessage {
|
|
|
83
83
|
* @public
|
|
84
84
|
* <p>The type of endpoint. Valid values are <code>source</code> and <code>target</code>.</p>
|
|
85
85
|
*/
|
|
86
|
-
EndpointType?: ReplicationEndpointTypeValue
|
|
86
|
+
EndpointType?: ReplicationEndpointTypeValue;
|
|
87
87
|
/**
|
|
88
88
|
* @public
|
|
89
89
|
* <p>The database engine name. Valid values, depending on the EndpointType, include
|
|
@@ -136,7 +136,7 @@ export interface ModifyEndpointMessage {
|
|
|
136
136
|
* @public
|
|
137
137
|
* <p>The SSL mode used to connect to the endpoint. The default value is <code>none</code>.</p>
|
|
138
138
|
*/
|
|
139
|
-
SslMode?: DmsSslModeValue
|
|
139
|
+
SslMode?: DmsSslModeValue;
|
|
140
140
|
/**
|
|
141
141
|
* @public
|
|
142
142
|
* <p> The Amazon Resource Name (ARN) for the IAM role you want to use to modify
|
|
@@ -551,7 +551,7 @@ export interface ModifyReplicationConfigMessage {
|
|
|
551
551
|
* @public
|
|
552
552
|
* <p>The type of replication.</p>
|
|
553
553
|
*/
|
|
554
|
-
ReplicationType?: MigrationTypeValue
|
|
554
|
+
ReplicationType?: MigrationTypeValue;
|
|
555
555
|
/**
|
|
556
556
|
* @public
|
|
557
557
|
* <p>Table mappings specified in the replication.</p>
|
|
@@ -802,7 +802,7 @@ export interface ModifyReplicationTaskMessage {
|
|
|
802
802
|
* <p>The migration type. Valid values: <code>full-load</code> | <code>cdc</code> | <code>full-load-and-cdc</code>
|
|
803
803
|
* </p>
|
|
804
804
|
*/
|
|
805
|
-
MigrationType?: MigrationTypeValue
|
|
805
|
+
MigrationType?: MigrationTypeValue;
|
|
806
806
|
/**
|
|
807
807
|
* @public
|
|
808
808
|
* <p>When using the CLI or boto3, provide the path of the JSON file that contains the
|
|
@@ -1010,7 +1010,7 @@ export interface ReloadReplicationTablesMessage {
|
|
|
1010
1010
|
* it if validation is enabled. Specify <code>validate-only</code> to re-validate the table.
|
|
1011
1011
|
* This option applies only when validation is enabled for the replication. </p>
|
|
1012
1012
|
*/
|
|
1013
|
-
ReloadOption?: ReloadOptionValue
|
|
1013
|
+
ReloadOption?: ReloadOptionValue;
|
|
1014
1014
|
}
|
|
1015
1015
|
/**
|
|
1016
1016
|
* @public
|
|
@@ -1045,7 +1045,7 @@ export interface ReloadTablesMessage {
|
|
|
1045
1045
|
* <p>Valid values: data-reload, validate-only</p>
|
|
1046
1046
|
* <p>Default value is data-reload.</p>
|
|
1047
1047
|
*/
|
|
1048
|
-
ReloadOption?: ReloadOptionValue
|
|
1048
|
+
ReloadOption?: ReloadOptionValue;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* @public
|
|
@@ -1194,7 +1194,7 @@ export interface StartMetadataModelExportAsScriptMessage {
|
|
|
1194
1194
|
* @public
|
|
1195
1195
|
* <p>Whether to export the metadata model from the source or the target.</p>
|
|
1196
1196
|
*/
|
|
1197
|
-
Origin: OriginTypeValue |
|
|
1197
|
+
Origin: OriginTypeValue | undefined;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* @public
|
|
1200
1200
|
* <p>The name of the model file to create in the Amazon S3 bucket.</p>
|
|
@@ -1261,7 +1261,7 @@ export interface StartMetadataModelImportMessage {
|
|
|
1261
1261
|
* @public
|
|
1262
1262
|
* <p>Whether to load metadata to the source or target database.</p>
|
|
1263
1263
|
*/
|
|
1264
|
-
Origin: OriginTypeValue |
|
|
1264
|
+
Origin: OriginTypeValue | undefined;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* @public
|
|
1267
1267
|
* <p>If <code>true</code>, DMS loads metadata for the specified objects from the source database.</p>
|
|
@@ -1383,7 +1383,7 @@ export interface StartReplicationTaskMessage {
|
|
|
1383
1383
|
* use <code>reload-target</code>. Otherwise use <code>resume-processing</code>, to replicate the
|
|
1384
1384
|
* changes from the last stop position.</p>
|
|
1385
1385
|
*/
|
|
1386
|
-
StartReplicationTaskType: StartReplicationTaskTypeValue |
|
|
1386
|
+
StartReplicationTaskType: StartReplicationTaskTypeValue | undefined;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* @public
|
|
1389
1389
|
* <p>Indicates the start time for a change data capture (CDC) operation. Use either
|
|
@@ -109,20 +109,20 @@ export interface DocDbDataProviderSettings {
|
|
|
109
109
|
ServerName?: string;
|
|
110
110
|
Port?: number;
|
|
111
111
|
DatabaseName?: string;
|
|
112
|
-
SslMode?: DmsSslModeValue
|
|
112
|
+
SslMode?: DmsSslModeValue;
|
|
113
113
|
CertificateArn?: string;
|
|
114
114
|
}
|
|
115
115
|
export interface MariaDbDataProviderSettings {
|
|
116
116
|
ServerName?: string;
|
|
117
117
|
Port?: number;
|
|
118
|
-
SslMode?: DmsSslModeValue
|
|
118
|
+
SslMode?: DmsSslModeValue;
|
|
119
119
|
CertificateArn?: string;
|
|
120
120
|
}
|
|
121
121
|
export interface MicrosoftSqlServerDataProviderSettings {
|
|
122
122
|
ServerName?: string;
|
|
123
123
|
Port?: number;
|
|
124
124
|
DatabaseName?: string;
|
|
125
|
-
SslMode?: DmsSslModeValue
|
|
125
|
+
SslMode?: DmsSslModeValue;
|
|
126
126
|
CertificateArn?: string;
|
|
127
127
|
}
|
|
128
128
|
export declare const AuthMechanismValue: {
|
|
@@ -141,23 +141,23 @@ export interface MongoDbDataProviderSettings {
|
|
|
141
141
|
ServerName?: string;
|
|
142
142
|
Port?: number;
|
|
143
143
|
DatabaseName?: string;
|
|
144
|
-
SslMode?: DmsSslModeValue
|
|
144
|
+
SslMode?: DmsSslModeValue;
|
|
145
145
|
CertificateArn?: string;
|
|
146
|
-
AuthType?: AuthTypeValue
|
|
146
|
+
AuthType?: AuthTypeValue;
|
|
147
147
|
AuthSource?: string;
|
|
148
|
-
AuthMechanism?: AuthMechanismValue
|
|
148
|
+
AuthMechanism?: AuthMechanismValue;
|
|
149
149
|
}
|
|
150
150
|
export interface MySqlDataProviderSettings {
|
|
151
151
|
ServerName?: string;
|
|
152
152
|
Port?: number;
|
|
153
|
-
SslMode?: DmsSslModeValue
|
|
153
|
+
SslMode?: DmsSslModeValue;
|
|
154
154
|
CertificateArn?: string;
|
|
155
155
|
}
|
|
156
156
|
export interface OracleDataProviderSettings {
|
|
157
157
|
ServerName?: string;
|
|
158
158
|
Port?: number;
|
|
159
159
|
DatabaseName?: string;
|
|
160
|
-
SslMode?: DmsSslModeValue
|
|
160
|
+
SslMode?: DmsSslModeValue;
|
|
161
161
|
CertificateArn?: string;
|
|
162
162
|
AsmServer?: string;
|
|
163
163
|
SecretsManagerOracleAsmSecretId?: string;
|
|
@@ -169,7 +169,7 @@ export interface PostgreSqlDataProviderSettings {
|
|
|
169
169
|
ServerName?: string;
|
|
170
170
|
Port?: number;
|
|
171
171
|
DatabaseName?: string;
|
|
172
|
-
SslMode?: DmsSslModeValue
|
|
172
|
+
SslMode?: DmsSslModeValue;
|
|
173
173
|
CertificateArn?: string;
|
|
174
174
|
}
|
|
175
175
|
export interface RedshiftDataProviderSettings {
|
|
@@ -351,7 +351,7 @@ export interface DocDbSettings {
|
|
|
351
351
|
ServerName?: string;
|
|
352
352
|
Port?: number;
|
|
353
353
|
DatabaseName?: string;
|
|
354
|
-
NestingLevel?: NestingLevelValue
|
|
354
|
+
NestingLevel?: NestingLevelValue;
|
|
355
355
|
ExtractDocId?: boolean;
|
|
356
356
|
DocsToInvestigate?: number;
|
|
357
357
|
KmsKeyId?: string;
|
|
@@ -386,7 +386,7 @@ export interface GcpMySQLSettings {
|
|
|
386
386
|
CleanSourceMetadataOnMismatch?: boolean;
|
|
387
387
|
DatabaseName?: string;
|
|
388
388
|
EventsPollInterval?: number;
|
|
389
|
-
TargetDbType?: TargetDbType
|
|
389
|
+
TargetDbType?: TargetDbType;
|
|
390
390
|
MaxFileSize?: number;
|
|
391
391
|
ParallelLoadThreads?: number;
|
|
392
392
|
Password?: string;
|
|
@@ -438,7 +438,7 @@ export type KafkaSslEndpointIdentificationAlgorithm =
|
|
|
438
438
|
export interface KafkaSettings {
|
|
439
439
|
Broker?: string;
|
|
440
440
|
Topic?: string;
|
|
441
|
-
MessageFormat?: MessageFormatValue
|
|
441
|
+
MessageFormat?: MessageFormatValue;
|
|
442
442
|
IncludeTransactionDetails?: boolean;
|
|
443
443
|
IncludePartitionValue?: boolean;
|
|
444
444
|
PartitionIncludeSchemaTable?: boolean;
|
|
@@ -446,7 +446,7 @@ export interface KafkaSettings {
|
|
|
446
446
|
IncludeControlDetails?: boolean;
|
|
447
447
|
MessageMaxBytes?: number;
|
|
448
448
|
IncludeNullAndEmpty?: boolean;
|
|
449
|
-
SecurityProtocol?: KafkaSecurityProtocol
|
|
449
|
+
SecurityProtocol?: KafkaSecurityProtocol;
|
|
450
450
|
SslClientCertificateArn?: string;
|
|
451
451
|
SslClientKeyArn?: string;
|
|
452
452
|
SslClientKeyPassword?: string;
|
|
@@ -454,14 +454,12 @@ export interface KafkaSettings {
|
|
|
454
454
|
SaslUsername?: string;
|
|
455
455
|
SaslPassword?: string;
|
|
456
456
|
NoHexPrefix?: boolean;
|
|
457
|
-
SaslMechanism?: KafkaSaslMechanism
|
|
458
|
-
SslEndpointIdentificationAlgorithm?:
|
|
459
|
-
| KafkaSslEndpointIdentificationAlgorithm
|
|
460
|
-
| string;
|
|
457
|
+
SaslMechanism?: KafkaSaslMechanism;
|
|
458
|
+
SslEndpointIdentificationAlgorithm?: KafkaSslEndpointIdentificationAlgorithm;
|
|
461
459
|
}
|
|
462
460
|
export interface KinesisSettings {
|
|
463
461
|
StreamArn?: string;
|
|
464
|
-
MessageFormat?: MessageFormatValue
|
|
462
|
+
MessageFormat?: MessageFormatValue;
|
|
465
463
|
ServiceAccessRoleArn?: string;
|
|
466
464
|
IncludeTransactionDetails?: boolean;
|
|
467
465
|
IncludePartitionValue?: boolean;
|
|
@@ -494,7 +492,7 @@ export interface MicrosoftSQLServerSettings {
|
|
|
494
492
|
Password?: string;
|
|
495
493
|
QuerySingleAlwaysOnNode?: boolean;
|
|
496
494
|
ReadBackupOnly?: boolean;
|
|
497
|
-
SafeguardPolicy?: SafeguardPolicy
|
|
495
|
+
SafeguardPolicy?: SafeguardPolicy;
|
|
498
496
|
ServerName?: string;
|
|
499
497
|
Username?: string;
|
|
500
498
|
UseBcpFullLoad?: boolean;
|
|
@@ -502,7 +500,7 @@ export interface MicrosoftSQLServerSettings {
|
|
|
502
500
|
SecretsManagerAccessRoleArn?: string;
|
|
503
501
|
SecretsManagerSecretId?: string;
|
|
504
502
|
TrimSpaceInChar?: boolean;
|
|
505
|
-
TlogAccessMode?: TlogAccessMode
|
|
503
|
+
TlogAccessMode?: TlogAccessMode;
|
|
506
504
|
ForceLobLookup?: boolean;
|
|
507
505
|
}
|
|
508
506
|
export interface MongoDbSettings {
|
|
@@ -511,9 +509,9 @@ export interface MongoDbSettings {
|
|
|
511
509
|
ServerName?: string;
|
|
512
510
|
Port?: number;
|
|
513
511
|
DatabaseName?: string;
|
|
514
|
-
AuthType?: AuthTypeValue
|
|
515
|
-
AuthMechanism?: AuthMechanismValue
|
|
516
|
-
NestingLevel?: NestingLevelValue
|
|
512
|
+
AuthType?: AuthTypeValue;
|
|
513
|
+
AuthMechanism?: AuthMechanismValue;
|
|
514
|
+
NestingLevel?: NestingLevelValue;
|
|
517
515
|
ExtractDocId?: string;
|
|
518
516
|
DocsToInvestigate?: string;
|
|
519
517
|
AuthSource?: string;
|
|
@@ -528,7 +526,7 @@ export interface MySQLSettings {
|
|
|
528
526
|
CleanSourceMetadataOnMismatch?: boolean;
|
|
529
527
|
DatabaseName?: string;
|
|
530
528
|
EventsPollInterval?: number;
|
|
531
|
-
TargetDbType?: TargetDbType
|
|
529
|
+
TargetDbType?: TargetDbType;
|
|
532
530
|
MaxFileSize?: number;
|
|
533
531
|
ParallelLoadThreads?: number;
|
|
534
532
|
Password?: string;
|
|
@@ -574,7 +572,7 @@ export interface OracleSettings {
|
|
|
574
572
|
AsmPassword?: string;
|
|
575
573
|
AsmServer?: string;
|
|
576
574
|
AsmUser?: string;
|
|
577
|
-
CharLengthSemantics?: CharLengthSemantics
|
|
575
|
+
CharLengthSemantics?: CharLengthSemantics;
|
|
578
576
|
DatabaseName?: string;
|
|
579
577
|
DirectPathParallelLoad?: boolean;
|
|
580
578
|
FailTasksOnLobTruncation?: boolean;
|
|
@@ -635,14 +633,14 @@ export interface PostgreSQLSettings {
|
|
|
635
633
|
ServerName?: string;
|
|
636
634
|
Username?: string;
|
|
637
635
|
SlotName?: string;
|
|
638
|
-
PluginName?: PluginNameValue
|
|
636
|
+
PluginName?: PluginNameValue;
|
|
639
637
|
SecretsManagerAccessRoleArn?: string;
|
|
640
638
|
SecretsManagerSecretId?: string;
|
|
641
639
|
TrimSpaceInChar?: boolean;
|
|
642
640
|
MapBooleanAsBoolean?: boolean;
|
|
643
641
|
MapJsonbAsClob?: boolean;
|
|
644
|
-
MapLongVarcharAs?: LongVarcharMappingType
|
|
645
|
-
DatabaseMode?: DatabaseMode
|
|
642
|
+
MapLongVarcharAs?: LongVarcharMappingType;
|
|
643
|
+
DatabaseMode?: DatabaseMode;
|
|
646
644
|
BabelfishDatabaseName?: string;
|
|
647
645
|
}
|
|
648
646
|
export declare const RedisAuthTypeValue: {
|
|
@@ -661,8 +659,8 @@ export type SslSecurityProtocolValue =
|
|
|
661
659
|
export interface RedisSettings {
|
|
662
660
|
ServerName: string | undefined;
|
|
663
661
|
Port: number | undefined;
|
|
664
|
-
SslSecurityProtocol?: SslSecurityProtocolValue
|
|
665
|
-
AuthType?: RedisAuthTypeValue
|
|
662
|
+
SslSecurityProtocol?: SslSecurityProtocolValue;
|
|
663
|
+
AuthType?: RedisAuthTypeValue;
|
|
666
664
|
AuthUserName?: string;
|
|
667
665
|
AuthPassword?: string;
|
|
668
666
|
SslCaCertificateArn?: string;
|
|
@@ -684,7 +682,7 @@ export interface RedshiftSettings {
|
|
|
684
682
|
DatabaseName?: string;
|
|
685
683
|
DateFormat?: string;
|
|
686
684
|
EmptyAsNull?: boolean;
|
|
687
|
-
EncryptionMode?: EncryptionModeValue
|
|
685
|
+
EncryptionMode?: EncryptionModeValue;
|
|
688
686
|
ExplicitIds?: boolean;
|
|
689
687
|
FileTransferUploadStreams?: number;
|
|
690
688
|
LoadTimeout?: number;
|
|
@@ -767,15 +765,15 @@ export interface S3Settings {
|
|
|
767
765
|
CsvDelimiter?: string;
|
|
768
766
|
BucketFolder?: string;
|
|
769
767
|
BucketName?: string;
|
|
770
|
-
CompressionType?: CompressionTypeValue
|
|
771
|
-
EncryptionMode?: EncryptionModeValue
|
|
768
|
+
CompressionType?: CompressionTypeValue;
|
|
769
|
+
EncryptionMode?: EncryptionModeValue;
|
|
772
770
|
ServerSideEncryptionKmsKeyId?: string;
|
|
773
|
-
DataFormat?: DataFormatValue
|
|
774
|
-
EncodingType?: EncodingTypeValue
|
|
771
|
+
DataFormat?: DataFormatValue;
|
|
772
|
+
EncodingType?: EncodingTypeValue;
|
|
775
773
|
DictPageSizeLimit?: number;
|
|
776
774
|
RowGroupLength?: number;
|
|
777
775
|
DataPageSize?: number;
|
|
778
|
-
ParquetVersion?: ParquetVersionValue
|
|
776
|
+
ParquetVersion?: ParquetVersionValue;
|
|
779
777
|
EnableStatistics?: boolean;
|
|
780
778
|
IncludeOpForFullLoad?: boolean;
|
|
781
779
|
CdcInsertsOnly?: boolean;
|
|
@@ -783,14 +781,14 @@ export interface S3Settings {
|
|
|
783
781
|
ParquetTimestampInMillisecond?: boolean;
|
|
784
782
|
CdcInsertsAndUpdates?: boolean;
|
|
785
783
|
DatePartitionEnabled?: boolean;
|
|
786
|
-
DatePartitionSequence?: DatePartitionSequenceValue
|
|
787
|
-
DatePartitionDelimiter?: DatePartitionDelimiterValue
|
|
784
|
+
DatePartitionSequence?: DatePartitionSequenceValue;
|
|
785
|
+
DatePartitionDelimiter?: DatePartitionDelimiterValue;
|
|
788
786
|
UseCsvNoSupValue?: boolean;
|
|
789
787
|
CsvNoSupValue?: string;
|
|
790
788
|
PreserveTransactions?: boolean;
|
|
791
789
|
CdcPath?: string;
|
|
792
790
|
UseTaskStartTimeForFullLoadTimestamp?: boolean;
|
|
793
|
-
CannedAclForObjects?: CannedAclForObjectsValue
|
|
791
|
+
CannedAclForObjects?: CannedAclForObjectsValue;
|
|
794
792
|
AddColumnName?: boolean;
|
|
795
793
|
CdcMaxBatchInterval?: number;
|
|
796
794
|
CdcMinFileSize?: number;
|
|
@@ -821,7 +819,7 @@ export interface TimestreamSettings {
|
|
|
821
819
|
}
|
|
822
820
|
export interface CreateEndpointMessage {
|
|
823
821
|
EndpointIdentifier: string | undefined;
|
|
824
|
-
EndpointType: ReplicationEndpointTypeValue |
|
|
822
|
+
EndpointType: ReplicationEndpointTypeValue | undefined;
|
|
825
823
|
EngineName: string | undefined;
|
|
826
824
|
Username?: string;
|
|
827
825
|
Password?: string;
|
|
@@ -832,7 +830,7 @@ export interface CreateEndpointMessage {
|
|
|
832
830
|
KmsKeyId?: string;
|
|
833
831
|
Tags?: Tag[];
|
|
834
832
|
CertificateArn?: string;
|
|
835
|
-
SslMode?: DmsSslModeValue
|
|
833
|
+
SslMode?: DmsSslModeValue;
|
|
836
834
|
ServiceAccessRoleArn?: string;
|
|
837
835
|
ExternalTableDefinition?: string;
|
|
838
836
|
DynamoDbSettings?: DynamoDbSettings;
|
|
@@ -858,7 +856,7 @@ export interface CreateEndpointMessage {
|
|
|
858
856
|
}
|
|
859
857
|
export interface Endpoint {
|
|
860
858
|
EndpointIdentifier?: string;
|
|
861
|
-
EndpointType?: ReplicationEndpointTypeValue
|
|
859
|
+
EndpointType?: ReplicationEndpointTypeValue;
|
|
862
860
|
EngineName?: string;
|
|
863
861
|
EngineDisplayName?: string;
|
|
864
862
|
Username?: string;
|
|
@@ -870,7 +868,7 @@ export interface Endpoint {
|
|
|
870
868
|
KmsKeyId?: string;
|
|
871
869
|
EndpointArn?: string;
|
|
872
870
|
CertificateArn?: string;
|
|
873
|
-
SslMode?: DmsSslModeValue
|
|
871
|
+
SslMode?: DmsSslModeValue;
|
|
874
872
|
ServiceAccessRoleArn?: string;
|
|
875
873
|
ExternalTableDefinition?: string;
|
|
876
874
|
ExternalId?: string;
|
|
@@ -1086,7 +1084,7 @@ export interface CreateReplicationConfigMessage {
|
|
|
1086
1084
|
SourceEndpointArn: string | undefined;
|
|
1087
1085
|
TargetEndpointArn: string | undefined;
|
|
1088
1086
|
ComputeConfig: ComputeConfig | undefined;
|
|
1089
|
-
ReplicationType: MigrationTypeValue |
|
|
1087
|
+
ReplicationType: MigrationTypeValue | undefined;
|
|
1090
1088
|
TableMappings: string | undefined;
|
|
1091
1089
|
ReplicationSettings?: string;
|
|
1092
1090
|
SupplementalSettings?: string;
|
|
@@ -1098,7 +1096,7 @@ export interface ReplicationConfig {
|
|
|
1098
1096
|
ReplicationConfigArn?: string;
|
|
1099
1097
|
SourceEndpointArn?: string;
|
|
1100
1098
|
TargetEndpointArn?: string;
|
|
1101
|
-
ReplicationType?: MigrationTypeValue
|
|
1099
|
+
ReplicationType?: MigrationTypeValue;
|
|
1102
1100
|
ComputeConfig?: ComputeConfig;
|
|
1103
1101
|
ReplicationSettings?: string;
|
|
1104
1102
|
SupplementalSettings?: string;
|
|
@@ -1230,7 +1228,7 @@ export interface CreateReplicationTaskMessage {
|
|
|
1230
1228
|
SourceEndpointArn: string | undefined;
|
|
1231
1229
|
TargetEndpointArn: string | undefined;
|
|
1232
1230
|
ReplicationInstanceArn: string | undefined;
|
|
1233
|
-
MigrationType: MigrationTypeValue |
|
|
1231
|
+
MigrationType: MigrationTypeValue | undefined;
|
|
1234
1232
|
TableMappings: string | undefined;
|
|
1235
1233
|
ReplicationTaskSettings?: string;
|
|
1236
1234
|
CdcStartTime?: Date;
|
|
@@ -1258,7 +1256,7 @@ export interface ReplicationTask {
|
|
|
1258
1256
|
SourceEndpointArn?: string;
|
|
1259
1257
|
TargetEndpointArn?: string;
|
|
1260
1258
|
ReplicationInstanceArn?: string;
|
|
1261
|
-
MigrationType?: MigrationTypeValue
|
|
1259
|
+
MigrationType?: MigrationTypeValue;
|
|
1262
1260
|
TableMappings?: string;
|
|
1263
1261
|
ReplicationTaskSettings?: string;
|
|
1264
1262
|
Status?: string;
|
|
@@ -1401,7 +1399,7 @@ export interface DescribeApplicableIndividualAssessmentsMessage {
|
|
|
1401
1399
|
ReplicationInstanceArn?: string;
|
|
1402
1400
|
SourceEngineName?: string;
|
|
1403
1401
|
TargetEngineName?: string;
|
|
1404
|
-
MigrationType?: MigrationTypeValue
|
|
1402
|
+
MigrationType?: MigrationTypeValue;
|
|
1405
1403
|
MaxRecords?: number;
|
|
1406
1404
|
Marker?: string;
|
|
1407
1405
|
}
|
|
@@ -1471,7 +1469,7 @@ export type EndpointSettingTypeValue =
|
|
|
1471
1469
|
(typeof EndpointSettingTypeValue)[keyof typeof EndpointSettingTypeValue];
|
|
1472
1470
|
export interface EndpointSetting {
|
|
1473
1471
|
Name?: string;
|
|
1474
|
-
Type?: EndpointSettingTypeValue
|
|
1472
|
+
Type?: EndpointSettingTypeValue;
|
|
1475
1473
|
EnumValues?: string[];
|
|
1476
1474
|
Sensitive?: boolean;
|
|
1477
1475
|
Units?: string;
|
|
@@ -1492,7 +1490,7 @@ export interface DescribeEndpointTypesMessage {
|
|
|
1492
1490
|
export interface SupportedEndpointType {
|
|
1493
1491
|
EngineName?: string;
|
|
1494
1492
|
SupportsCDC?: boolean;
|
|
1495
|
-
EndpointType?: ReplicationEndpointTypeValue
|
|
1493
|
+
EndpointType?: ReplicationEndpointTypeValue;
|
|
1496
1494
|
ReplicationInstanceEngineMinimumVersion?: string;
|
|
1497
1495
|
EngineDisplayName?: string;
|
|
1498
1496
|
}
|
|
@@ -1513,7 +1511,7 @@ export type ReleaseStatusValues =
|
|
|
1513
1511
|
export interface EngineVersion {
|
|
1514
1512
|
Version?: string;
|
|
1515
1513
|
Lifecycle?: string;
|
|
1516
|
-
ReleaseStatus?: ReleaseStatusValues
|
|
1514
|
+
ReleaseStatus?: ReleaseStatusValues;
|
|
1517
1515
|
LaunchDate?: Date;
|
|
1518
1516
|
AutoUpgradeDate?: Date;
|
|
1519
1517
|
DeprecationDate?: Date;
|
|
@@ -1541,7 +1539,7 @@ export declare const SourceType: {
|
|
|
1541
1539
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1542
1540
|
export interface DescribeEventsMessage {
|
|
1543
1541
|
SourceIdentifier?: string;
|
|
1544
|
-
SourceType?: SourceType
|
|
1542
|
+
SourceType?: SourceType;
|
|
1545
1543
|
StartTime?: Date;
|
|
1546
1544
|
EndTime?: Date;
|
|
1547
1545
|
Duration?: number;
|
|
@@ -1552,7 +1550,7 @@ export interface DescribeEventsMessage {
|
|
|
1552
1550
|
}
|
|
1553
1551
|
export interface Event {
|
|
1554
1552
|
SourceIdentifier?: string;
|
|
1555
|
-
SourceType?: SourceType
|
|
1553
|
+
SourceType?: SourceType;
|
|
1556
1554
|
Message?: string;
|
|
1557
1555
|
EventCategories?: string[];
|
|
1558
1556
|
Date?: Date;
|
|
@@ -1625,7 +1623,7 @@ export declare const CollectorStatus: {
|
|
|
1625
1623
|
export type CollectorStatus =
|
|
1626
1624
|
(typeof CollectorStatus)[keyof typeof CollectorStatus];
|
|
1627
1625
|
export interface CollectorHealthCheck {
|
|
1628
|
-
CollectorStatus?: CollectorStatus
|
|
1626
|
+
CollectorStatus?: CollectorStatus;
|
|
1629
1627
|
LocalCollectorS3Access?: boolean;
|
|
1630
1628
|
WebCollectorS3Access?: boolean;
|
|
1631
1629
|
WebCollectorGrantedRoleBasedAccess?: boolean;
|
|
@@ -1644,7 +1642,7 @@ export interface CollectorResponse {
|
|
|
1644
1642
|
CollectorReferencedId?: string;
|
|
1645
1643
|
CollectorName?: string;
|
|
1646
1644
|
CollectorVersion?: string;
|
|
1647
|
-
VersionStatus?: VersionStatus
|
|
1645
|
+
VersionStatus?: VersionStatus;
|
|
1648
1646
|
Description?: string;
|
|
1649
1647
|
S3BucketName?: string;
|
|
1650
1648
|
ServiceAccessRoleArn?: string;
|
|
@@ -1837,7 +1835,7 @@ export interface OrderableReplicationInstance {
|
|
|
1837
1835
|
DefaultAllocatedStorage?: number;
|
|
1838
1836
|
IncludedAllocatedStorage?: number;
|
|
1839
1837
|
AvailabilityZones?: string[];
|
|
1840
|
-
ReleaseStatus?: ReleaseStatusValues
|
|
1838
|
+
ReleaseStatus?: ReleaseStatusValues;
|
|
1841
1839
|
}
|
|
1842
1840
|
export interface DescribeOrderableReplicationInstancesResponse {
|
|
1843
1841
|
OrderableReplicationInstances?: OrderableReplicationInstance[];
|
|
@@ -1928,7 +1926,7 @@ export type RefreshSchemasStatusTypeValue =
|
|
|
1928
1926
|
export interface RefreshSchemasStatus {
|
|
1929
1927
|
EndpointArn?: string;
|
|
1930
1928
|
ReplicationInstanceArn?: string;
|
|
1931
|
-
Status?: RefreshSchemasStatusTypeValue
|
|
1929
|
+
Status?: RefreshSchemasStatusTypeValue;
|
|
1932
1930
|
LastRefreshDate?: Date;
|
|
1933
1931
|
LastFailureMessage?: string;
|
|
1934
1932
|
}
|
|
@@ -1999,7 +1997,7 @@ export interface Replication {
|
|
|
1999
1997
|
ReplicationConfigArn?: string;
|
|
2000
1998
|
SourceEndpointArn?: string;
|
|
2001
1999
|
TargetEndpointArn?: string;
|
|
2002
|
-
ReplicationType?: MigrationTypeValue
|
|
2000
|
+
ReplicationType?: MigrationTypeValue;
|
|
2003
2001
|
Status?: string;
|
|
2004
2002
|
ProvisionData?: ProvisionData;
|
|
2005
2003
|
StopReason?: string;
|
|
@@ -2147,7 +2145,7 @@ export interface ExportMetadataModelAssessmentMessage {
|
|
|
2147
2145
|
MigrationProjectIdentifier: string | undefined;
|
|
2148
2146
|
SelectionRules: string | undefined;
|
|
2149
2147
|
FileName?: string;
|
|
2150
|
-
AssessmentReportTypes?:
|
|
2148
|
+
AssessmentReportTypes?: AssessmentReportType[];
|
|
2151
2149
|
}
|
|
2152
2150
|
export interface ExportMetadataModelAssessmentResultEntry {
|
|
2153
2151
|
S3ObjectKey?: string;
|
|
@@ -56,7 +56,7 @@ export interface ModifyDataProviderResponse {
|
|
|
56
56
|
export interface ModifyEndpointMessage {
|
|
57
57
|
EndpointArn: string | undefined;
|
|
58
58
|
EndpointIdentifier?: string;
|
|
59
|
-
EndpointType?: ReplicationEndpointTypeValue
|
|
59
|
+
EndpointType?: ReplicationEndpointTypeValue;
|
|
60
60
|
EngineName?: string;
|
|
61
61
|
Username?: string;
|
|
62
62
|
Password?: string;
|
|
@@ -65,7 +65,7 @@ export interface ModifyEndpointMessage {
|
|
|
65
65
|
DatabaseName?: string;
|
|
66
66
|
ExtraConnectionAttributes?: string;
|
|
67
67
|
CertificateArn?: string;
|
|
68
|
-
SslMode?: DmsSslModeValue
|
|
68
|
+
SslMode?: DmsSslModeValue;
|
|
69
69
|
ServiceAccessRoleArn?: string;
|
|
70
70
|
ExternalTableDefinition?: string;
|
|
71
71
|
DynamoDbSettings?: DynamoDbSettings;
|
|
@@ -132,7 +132,7 @@ export interface ModifyMigrationProjectResponse {
|
|
|
132
132
|
export interface ModifyReplicationConfigMessage {
|
|
133
133
|
ReplicationConfigArn: string | undefined;
|
|
134
134
|
ReplicationConfigIdentifier?: string;
|
|
135
|
-
ReplicationType?: MigrationTypeValue
|
|
135
|
+
ReplicationType?: MigrationTypeValue;
|
|
136
136
|
TableMappings?: string;
|
|
137
137
|
ReplicationSettings?: string;
|
|
138
138
|
SupplementalSettings?: string;
|
|
@@ -183,7 +183,7 @@ export declare class SubnetAlreadyInUse extends __BaseException {
|
|
|
183
183
|
export interface ModifyReplicationTaskMessage {
|
|
184
184
|
ReplicationTaskArn: string | undefined;
|
|
185
185
|
ReplicationTaskIdentifier?: string;
|
|
186
|
-
MigrationType?: MigrationTypeValue
|
|
186
|
+
MigrationType?: MigrationTypeValue;
|
|
187
187
|
TableMappings?: string;
|
|
188
188
|
ReplicationTaskSettings?: string;
|
|
189
189
|
CdcStartTime?: Date;
|
|
@@ -229,7 +229,7 @@ export interface TableToReload {
|
|
|
229
229
|
export interface ReloadReplicationTablesMessage {
|
|
230
230
|
ReplicationConfigArn: string | undefined;
|
|
231
231
|
TablesToReload: TableToReload[] | undefined;
|
|
232
|
-
ReloadOption?: ReloadOptionValue
|
|
232
|
+
ReloadOption?: ReloadOptionValue;
|
|
233
233
|
}
|
|
234
234
|
export interface ReloadReplicationTablesResponse {
|
|
235
235
|
ReplicationConfigArn?: string;
|
|
@@ -237,7 +237,7 @@ export interface ReloadReplicationTablesResponse {
|
|
|
237
237
|
export interface ReloadTablesMessage {
|
|
238
238
|
ReplicationTaskArn: string | undefined;
|
|
239
239
|
TablesToReload: TableToReload[] | undefined;
|
|
240
|
-
ReloadOption?: ReloadOptionValue
|
|
240
|
+
ReloadOption?: ReloadOptionValue;
|
|
241
241
|
}
|
|
242
242
|
export interface ReloadTablesResponse {
|
|
243
243
|
ReplicationTaskArn?: string;
|
|
@@ -280,7 +280,7 @@ export type OriginTypeValue =
|
|
|
280
280
|
export interface StartMetadataModelExportAsScriptMessage {
|
|
281
281
|
MigrationProjectIdentifier: string | undefined;
|
|
282
282
|
SelectionRules: string | undefined;
|
|
283
|
-
Origin: OriginTypeValue |
|
|
283
|
+
Origin: OriginTypeValue | undefined;
|
|
284
284
|
FileName?: string;
|
|
285
285
|
}
|
|
286
286
|
export interface StartMetadataModelExportAsScriptResponse {
|
|
@@ -297,7 +297,7 @@ export interface StartMetadataModelExportToTargetResponse {
|
|
|
297
297
|
export interface StartMetadataModelImportMessage {
|
|
298
298
|
MigrationProjectIdentifier: string | undefined;
|
|
299
299
|
SelectionRules: string | undefined;
|
|
300
|
-
Origin: OriginTypeValue |
|
|
300
|
+
Origin: OriginTypeValue | undefined;
|
|
301
301
|
Refresh?: boolean;
|
|
302
302
|
}
|
|
303
303
|
export interface StartMetadataModelImportResponse {
|
|
@@ -326,7 +326,7 @@ export type StartReplicationTaskTypeValue =
|
|
|
326
326
|
(typeof StartReplicationTaskTypeValue)[keyof typeof StartReplicationTaskTypeValue];
|
|
327
327
|
export interface StartReplicationTaskMessage {
|
|
328
328
|
ReplicationTaskArn: string | undefined;
|
|
329
|
-
StartReplicationTaskType: StartReplicationTaskTypeValue |
|
|
329
|
+
StartReplicationTaskType: StartReplicationTaskTypeValue | undefined;
|
|
330
330
|
CdcStartTime?: Date;
|
|
331
331
|
CdcStartPosition?: string;
|
|
332
332
|
CdcStopPosition?: string;
|
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.
|
|
4
|
+
"version": "3.429.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,9 +21,9 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|