@aws-sdk/client-database-migration-service 3.745.0 → 3.749.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.
- package/dist-cjs/index.js +23 -0
- package/dist-es/protocols/Aws_json1_1.js +25 -0
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +2 -1
- package/dist-types/commands/ApplyPendingMaintenanceActionCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataProviderCommand.d.ts +2 -2
- package/dist-types/commands/CreateEndpointCommand.d.ts +5 -4
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +1 -2
- package/dist-types/commands/CreateReplicationConfigCommand.d.ts +3 -3
- package/dist-types/commands/CreateReplicationInstanceCommand.d.ts +7 -8
- package/dist-types/commands/CreateReplicationSubnetGroupCommand.d.ts +8 -6
- package/dist-types/commands/DeleteInstanceProfileCommand.d.ts +2 -2
- package/dist-types/commands/DeleteReplicationConfigCommand.d.ts +4 -3
- package/dist-types/commands/DescribeApplicableIndividualAssessmentsCommand.d.ts +14 -13
- package/dist-types/commands/DescribeDataProvidersCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEndpointSettingsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEventCategoriesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeEventsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeExtensionPackAssociationsCommand.d.ts +3 -4
- package/dist-types/commands/DescribeInstanceProfilesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMetadataModelAssessmentsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMigrationProjectsCommand.d.ts +2 -1
- package/dist-types/commands/DescribePendingMaintenanceActionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReplicationConfigsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +3 -5
- package/dist-types/commands/DescribeReplicationTaskIndividualAssessmentsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeReplicationsCommand.d.ts +24 -0
- package/dist-types/commands/ExportMetadataModelAssessmentCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -4
- package/dist-types/commands/ModifyDataProviderCommand.d.ts +2 -1
- package/dist-types/commands/ModifyEndpointCommand.d.ts +5 -4
- package/dist-types/commands/ModifyInstanceProfileCommand.d.ts +2 -2
- package/dist-types/commands/ModifyReplicationConfigCommand.d.ts +8 -8
- package/dist-types/commands/MoveReplicationTaskCommand.d.ts +1 -2
- package/dist-types/commands/ReloadTablesCommand.d.ts +2 -2
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -5
- package/dist-types/commands/StartExtensionPackAssociationCommand.d.ts +1 -2
- package/dist-types/commands/StartMetadataModelAssessmentCommand.d.ts +2 -2
- package/dist-types/commands/StartMetadataModelExportAsScriptCommand.d.ts +2 -1
- package/dist-types/commands/StartMetadataModelImportCommand.d.ts +2 -1
- package/dist-types/commands/StartReplicationCommand.d.ts +30 -4
- package/dist-types/commands/StartReplicationTaskAssessmentCommand.d.ts +4 -4
- package/dist-types/commands/StartReplicationTaskAssessmentRunCommand.d.ts +2 -2
- package/dist-types/commands/StopReplicationCommand.d.ts +27 -2
- package/dist-types/commands/UpdateSubscriptionsToEventBridgeCommand.d.ts +11 -9
- package/dist-types/models/models_0.d.ts +1286 -1122
- package/dist-types/models/models_1.d.ts +224 -137
- package/dist-types/ts3.4/commands/DescribeReplicationTaskIndividualAssessmentsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +14 -5
- package/dist-types/ts3.4/models/models_1.d.ts +6 -0
- package/package.json +11 -11
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException";
|
|
3
3
|
import { Certificate, ComputeConfig, Connection, DataMigration, DataProvider, DataProviderDescriptorDefinition, DataProviderSettings, DmsSslModeValue, DmsTransferSettings, DocDbSettings, DynamoDbSettings, ElasticsearchSettings, Endpoint, EventSubscription, Filter, GcpMySQLSettings, IBMDb2Settings, InstanceProfile, KafkaSettings, KerberosAuthenticationSettings, KinesisSettings, MicrosoftSQLServerSettings, MigrationProject, MigrationTypeValue, MongoDbSettings, MySQLSettings, NeptuneSettings, OracleSettings, PostgreSQLSettings, RecommendationSettings, RedisSettings, RedshiftSettings, RefreshSchemasStatus, Replication, ReplicationConfig, ReplicationEndpointTypeValue, ReplicationInstance, ReplicationSubnetGroup, ReplicationTask, ReplicationTaskAssessmentRun, S3Settings, SCApplicationAttributes, SourceDataSetting, SybaseSettings, TableStatistics, Tag, TargetDataSetting, TimestreamSettings } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p></p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DescribeReplicationTaskIndividualAssessmentsMessage {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Filters applied to the individual assessments described in the form of key-value
|
|
11
|
+
* pairs.</p>
|
|
12
|
+
* <p>Valid filter names: <code>replication-task-assessment-run-arn</code>,
|
|
13
|
+
* <code>replication-task-arn</code>, <code>status</code>
|
|
14
|
+
* </p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
Filters?: Filter[] | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The maximum number of records to include in the response. If more records exist than the
|
|
20
|
+
* specified <code>MaxRecords</code> value, a pagination token called a marker is included in
|
|
21
|
+
* the response so that the remaining results can be retrieved.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
MaxRecords?: number | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
27
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
28
|
+
* by <code>MaxRecords</code>.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Marker?: string | undefined;
|
|
32
|
+
}
|
|
4
33
|
/**
|
|
5
34
|
* <p>Provides information that describes an individual assessment from a premigration
|
|
6
35
|
* assessment run.</p>
|
|
@@ -329,8 +358,9 @@ export interface ImportCertificateMessage {
|
|
|
329
358
|
*/
|
|
330
359
|
CertificatePem?: string | undefined;
|
|
331
360
|
/**
|
|
332
|
-
* <p>The location of an imported Oracle Wallet certificate for use with SSL. Provide the name
|
|
333
|
-
*
|
|
361
|
+
* <p>The location of an imported Oracle Wallet certificate for use with SSL. Provide the name
|
|
362
|
+
* of a <code>.sso</code> file using the <code>fileb://</code> prefix. You can't provide the
|
|
363
|
+
* certificate inline.</p>
|
|
334
364
|
* <p>Example: <code>filebase64("$\{path.root\}/rds-ca-2019-root.sso")</code>
|
|
335
365
|
* </p>
|
|
336
366
|
* @public
|
|
@@ -461,12 +491,14 @@ export interface ModifyDataMigrationMessage {
|
|
|
461
491
|
*/
|
|
462
492
|
TargetDataSettings?: TargetDataSetting[] | undefined;
|
|
463
493
|
/**
|
|
464
|
-
* <p>The number of parallel jobs that trigger parallel threads to unload the tables from the
|
|
494
|
+
* <p>The number of parallel jobs that trigger parallel threads to unload the tables from the
|
|
495
|
+
* source, and then load them to the target.</p>
|
|
465
496
|
* @public
|
|
466
497
|
*/
|
|
467
498
|
NumberOfJobs?: number | undefined;
|
|
468
499
|
/**
|
|
469
|
-
* <p>A JSON-formatted string that defines what objects to include and exclude from the
|
|
500
|
+
* <p>A JSON-formatted string that defines what objects to include and exclude from the
|
|
501
|
+
* migration.</p>
|
|
470
502
|
* @public
|
|
471
503
|
*/
|
|
472
504
|
SelectionRules?: string | undefined;
|
|
@@ -560,19 +592,20 @@ export interface ModifyEndpointMessage {
|
|
|
560
592
|
*/
|
|
561
593
|
EndpointIdentifier?: string | undefined;
|
|
562
594
|
/**
|
|
563
|
-
* <p>The type of endpoint.
|
|
595
|
+
* <p>The type of endpoint. Valid values are <code>source</code> and
|
|
596
|
+
* <code>target</code>.</p>
|
|
564
597
|
* @public
|
|
565
598
|
*/
|
|
566
599
|
EndpointType?: ReplicationEndpointTypeValue | undefined;
|
|
567
600
|
/**
|
|
568
601
|
* <p>The database engine name. Valid values, depending on the EndpointType, include
|
|
569
|
-
*
|
|
570
|
-
*
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
574
|
-
*
|
|
575
|
-
*
|
|
602
|
+
* <code>"mysql"</code>, <code>"oracle"</code>, <code>"postgres"</code>,
|
|
603
|
+
* <code>"mariadb"</code>, <code>"aurora"</code>, <code>"aurora-postgresql"</code>,
|
|
604
|
+
* <code>"redshift"</code>, <code>"s3"</code>, <code>"db2"</code>, <code>"db2-zos"</code>,
|
|
605
|
+
* <code>"azuredb"</code>, <code>"sybase"</code>, <code>"dynamodb"</code>,
|
|
606
|
+
* <code>"mongodb"</code>, <code>"kinesis"</code>, <code>"kafka"</code>,
|
|
607
|
+
* <code>"elasticsearch"</code>, <code>"documentdb"</code>, <code>"sqlserver"</code>,
|
|
608
|
+
* <code>"neptune"</code>, and <code>"babelfish"</code>.</p>
|
|
576
609
|
* @public
|
|
577
610
|
*/
|
|
578
611
|
EngineName?: string | undefined;
|
|
@@ -597,7 +630,8 @@ export interface ModifyEndpointMessage {
|
|
|
597
630
|
*/
|
|
598
631
|
Port?: number | undefined;
|
|
599
632
|
/**
|
|
600
|
-
* <p>The name of the endpoint database. For a MySQL source or target endpoint, do not specify
|
|
633
|
+
* <p>The name of the endpoint database. For a MySQL source or target endpoint, do not specify
|
|
634
|
+
* DatabaseName.</p>
|
|
601
635
|
* @public
|
|
602
636
|
*/
|
|
603
637
|
DatabaseName?: string | undefined;
|
|
@@ -613,13 +647,14 @@ export interface ModifyEndpointMessage {
|
|
|
613
647
|
*/
|
|
614
648
|
CertificateArn?: string | undefined;
|
|
615
649
|
/**
|
|
616
|
-
* <p>The SSL mode used to connect to the endpoint.
|
|
650
|
+
* <p>The SSL mode used to connect to the endpoint. The default value is
|
|
651
|
+
* <code>none</code>.</p>
|
|
617
652
|
* @public
|
|
618
653
|
*/
|
|
619
654
|
SslMode?: DmsSslModeValue | undefined;
|
|
620
655
|
/**
|
|
621
|
-
* <p> The Amazon Resource Name (ARN) for the IAM role you want to use to modify
|
|
622
|
-
*
|
|
656
|
+
* <p> The Amazon Resource Name (ARN) for the IAM role you want to use to modify the endpoint.
|
|
657
|
+
* The role must allow the <code>iam:PassRole</code> action.</p>
|
|
623
658
|
* @public
|
|
624
659
|
*/
|
|
625
660
|
ServiceAccessRoleArn?: string | undefined;
|
|
@@ -629,17 +664,16 @@ export interface ModifyEndpointMessage {
|
|
|
629
664
|
*/
|
|
630
665
|
ExternalTableDefinition?: string | undefined;
|
|
631
666
|
/**
|
|
632
|
-
* <p>Settings in JSON format for the target Amazon DynamoDB endpoint. For information about
|
|
633
|
-
*
|
|
634
|
-
*
|
|
635
|
-
* Guide.</i>
|
|
667
|
+
* <p>Settings in JSON format for the target Amazon DynamoDB endpoint. For information about
|
|
668
|
+
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html#CHAP_Target.DynamoDB.ObjectMapping">Using Object Mapping to Migrate Data to DynamoDB</a> in the <i>Database Migration Service
|
|
669
|
+
* User Guide.</i>
|
|
636
670
|
* </p>
|
|
637
671
|
* @public
|
|
638
672
|
*/
|
|
639
673
|
DynamoDbSettings?: DynamoDbSettings | undefined;
|
|
640
674
|
/**
|
|
641
675
|
* <p>Settings in JSON format for the target Amazon S3 endpoint. For more information about
|
|
642
|
-
*
|
|
676
|
+
* the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring">Extra
|
|
643
677
|
* Connection Attributes When Using Amazon S3 as a Target for DMS</a> in the
|
|
644
678
|
* <i>Database Migration Service User Guide.</i>
|
|
645
679
|
* </p>
|
|
@@ -651,7 +685,8 @@ export interface ModifyEndpointMessage {
|
|
|
651
685
|
* <p>Attributes include the following:</p>
|
|
652
686
|
* <ul>
|
|
653
687
|
* <li>
|
|
654
|
-
* <p>serviceAccessRoleArn - The Amazon Resource Name (ARN) used by the service access
|
|
688
|
+
* <p>serviceAccessRoleArn - The Amazon Resource Name (ARN) used by the service access
|
|
689
|
+
* IAM role. The role must allow the <code>iam:PassRole</code> action.</p>
|
|
655
690
|
* </li>
|
|
656
691
|
* <li>
|
|
657
692
|
* <p>BucketName - The name of the S3 bucket to use.</p>
|
|
@@ -668,41 +703,41 @@ export interface ModifyEndpointMessage {
|
|
|
668
703
|
DmsTransferSettings?: DmsTransferSettings | undefined;
|
|
669
704
|
/**
|
|
670
705
|
* <p>Settings in JSON format for the source MongoDB endpoint. For more information about the
|
|
671
|
-
* available settings, see the configuration properties section in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration">Endpoint configuration settings
|
|
672
|
-
*
|
|
673
|
-
* <i>Database Migration Service User Guide.</i>
|
|
706
|
+
* available settings, see the configuration properties section in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration">Endpoint configuration settings when using MongoDB as a source for Database Migration Service</a> in
|
|
707
|
+
* the <i>Database Migration Service User Guide.</i>
|
|
674
708
|
* </p>
|
|
675
709
|
* @public
|
|
676
710
|
*/
|
|
677
711
|
MongoDbSettings?: MongoDbSettings | undefined;
|
|
678
712
|
/**
|
|
679
713
|
* <p>Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For
|
|
680
|
-
* more information about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping">Using object mapping to
|
|
681
|
-
*
|
|
714
|
+
* more information about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping">Using object mapping to migrate data to a Kinesis data stream</a> in the
|
|
715
|
+
* <i>Database Migration Service User Guide.</i>
|
|
682
716
|
* </p>
|
|
683
717
|
* @public
|
|
684
718
|
*/
|
|
685
719
|
KinesisSettings?: KinesisSettings | undefined;
|
|
686
720
|
/**
|
|
687
721
|
* <p>Settings in JSON format for the target Apache Kafka endpoint. For more information about
|
|
688
|
-
* the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping">Using
|
|
689
|
-
* to migrate data to a Kafka topic</a> in the <i>Database Migration Service User
|
|
722
|
+
* the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping">Using
|
|
723
|
+
* object mapping to migrate data to a Kafka topic</a> in the <i>Database Migration Service User
|
|
724
|
+
* Guide.</i>
|
|
690
725
|
* </p>
|
|
691
726
|
* @public
|
|
692
727
|
*/
|
|
693
728
|
KafkaSettings?: KafkaSettings | undefined;
|
|
694
729
|
/**
|
|
695
|
-
* <p>Settings in JSON format for the target OpenSearch endpoint. For more
|
|
696
|
-
* about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration">Extra Connection Attributes When Using OpenSearch as a Target for
|
|
697
|
-
*
|
|
730
|
+
* <p>Settings in JSON format for the target OpenSearch endpoint. For more
|
|
731
|
+
* information about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration">Extra Connection Attributes When Using OpenSearch as a Target for
|
|
732
|
+
* DMS</a> in the <i>Database Migration Service User Guide.</i>
|
|
698
733
|
* </p>
|
|
699
734
|
* @public
|
|
700
735
|
*/
|
|
701
736
|
ElasticsearchSettings?: ElasticsearchSettings | undefined;
|
|
702
737
|
/**
|
|
703
738
|
* <p>Settings in JSON format for the target Amazon Neptune endpoint. For more information
|
|
704
|
-
* about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings">Specifying graph-mapping rules using Gremlin and R2RML for Amazon
|
|
705
|
-
*
|
|
739
|
+
* about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings">Specifying graph-mapping rules using Gremlin and R2RML for Amazon
|
|
740
|
+
* Neptune as a target</a> in the <i>Database Migration Service User Guide.</i>
|
|
706
741
|
* </p>
|
|
707
742
|
* @public
|
|
708
743
|
*/
|
|
@@ -714,9 +749,8 @@ export interface ModifyEndpointMessage {
|
|
|
714
749
|
RedshiftSettings?: RedshiftSettings | undefined;
|
|
715
750
|
/**
|
|
716
751
|
* <p>Settings in JSON format for the source and target PostgreSQL endpoint. For information
|
|
717
|
-
* about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib">Extra connection
|
|
718
|
-
*
|
|
719
|
-
* Extra connection attributes when using PostgreSQL as a target for DMS</a> in the
|
|
752
|
+
* about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib">Extra connection attributes when using PostgreSQL as a source for DMS</a> and
|
|
753
|
+
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html#CHAP_Target.PostgreSQL.ConnectionAttrib"> Extra connection attributes when using PostgreSQL as a target for DMS</a> in the
|
|
720
754
|
* <i>Database Migration Service User Guide.</i>
|
|
721
755
|
* </p>
|
|
722
756
|
* @public
|
|
@@ -724,18 +758,15 @@ export interface ModifyEndpointMessage {
|
|
|
724
758
|
PostgreSQLSettings?: PostgreSQLSettings | undefined;
|
|
725
759
|
/**
|
|
726
760
|
* <p>Settings in JSON format for the source and target MySQL endpoint. For information about
|
|
727
|
-
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib">Extra connection
|
|
728
|
-
*
|
|
729
|
-
* connection attributes when using a MySQL-compatible database as a target for DMS</a> in the <i>Database Migration Service User
|
|
730
|
-
* Guide.</i>
|
|
761
|
+
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib">Extra connection attributes when using MySQL as a source for DMS</a> and <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html#CHAP_Target.MySQL.ConnectionAttrib">Extra connection attributes when using a MySQL-compatible database as a target for
|
|
762
|
+
* DMS</a> in the <i>Database Migration Service User Guide.</i>
|
|
731
763
|
* </p>
|
|
732
764
|
* @public
|
|
733
765
|
*/
|
|
734
766
|
MySQLSettings?: MySQLSettings | undefined;
|
|
735
767
|
/**
|
|
736
768
|
* <p>Settings in JSON format for the source and target Oracle endpoint. For information about
|
|
737
|
-
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib">Extra connection
|
|
738
|
-
* attributes when using Oracle as a source for DMS</a> and <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html#CHAP_Target.Oracle.ConnectionAttrib">
|
|
769
|
+
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib">Extra connection attributes when using Oracle as a source for DMS</a> and <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html#CHAP_Target.Oracle.ConnectionAttrib">
|
|
739
770
|
* Extra connection attributes when using Oracle as a target for DMS</a> in the
|
|
740
771
|
* <i>Database Migration Service User Guide.</i>
|
|
741
772
|
* </p>
|
|
@@ -744,19 +775,18 @@ export interface ModifyEndpointMessage {
|
|
|
744
775
|
OracleSettings?: OracleSettings | undefined;
|
|
745
776
|
/**
|
|
746
777
|
* <p>Settings in JSON format for the source and target SAP ASE endpoint. For information
|
|
747
|
-
* about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib">Extra
|
|
748
|
-
* when using SAP ASE as a source for DMS</a> and <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html#CHAP_Target.SAP.ConnectionAttrib">Extra
|
|
749
|
-
* when using SAP ASE as a target for DMS</a> in the
|
|
750
|
-
*
|
|
778
|
+
* about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib">Extra
|
|
779
|
+
* connection attributes when using SAP ASE as a source for DMS</a> and <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html#CHAP_Target.SAP.ConnectionAttrib">Extra
|
|
780
|
+
* connection attributes when using SAP ASE as a target for DMS</a> in the
|
|
781
|
+
* <i>Database Migration Service User Guide.</i>
|
|
751
782
|
* </p>
|
|
752
783
|
* @public
|
|
753
784
|
*/
|
|
754
785
|
SybaseSettings?: SybaseSettings | undefined;
|
|
755
786
|
/**
|
|
756
787
|
* <p>Settings in JSON format for the source and target Microsoft SQL Server endpoint. For
|
|
757
|
-
* information about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib">Extra connection
|
|
758
|
-
*
|
|
759
|
-
* Extra connection attributes when using SQL Server as a target for DMS</a> in the
|
|
788
|
+
* information about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib">Extra connection attributes when using SQL Server as a source for DMS</a> and
|
|
789
|
+
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html#CHAP_Target.SQLServer.ConnectionAttrib"> Extra connection attributes when using SQL Server as a target for DMS</a> in the
|
|
760
790
|
* <i>Database Migration Service User Guide.</i>
|
|
761
791
|
* </p>
|
|
762
792
|
* @public
|
|
@@ -764,18 +794,18 @@ export interface ModifyEndpointMessage {
|
|
|
764
794
|
MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings | undefined;
|
|
765
795
|
/**
|
|
766
796
|
* <p>Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other
|
|
767
|
-
* available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib">Extra
|
|
768
|
-
* when using Db2 LUW as a source for DMS</a> in the
|
|
769
|
-
*
|
|
797
|
+
* available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib">Extra
|
|
798
|
+
* connection attributes when using Db2 LUW as a source for DMS</a> in the
|
|
799
|
+
* <i>Database Migration Service User Guide.</i>
|
|
770
800
|
* </p>
|
|
771
801
|
* @public
|
|
772
802
|
*/
|
|
773
803
|
IBMDb2Settings?: IBMDb2Settings | undefined;
|
|
774
804
|
/**
|
|
775
|
-
* <p>Settings in JSON format for the source DocumentDB endpoint. For more information about
|
|
776
|
-
* available settings, see the configuration properties section in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DocumentDB.html"> Using
|
|
777
|
-
*
|
|
778
|
-
*
|
|
805
|
+
* <p>Settings in JSON format for the source DocumentDB endpoint. For more information about
|
|
806
|
+
* the available settings, see the configuration properties section in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DocumentDB.html"> Using
|
|
807
|
+
* DocumentDB as a Target for Database Migration Service </a> in the <i>Database Migration Service User
|
|
808
|
+
* Guide.</i>
|
|
779
809
|
* </p>
|
|
780
810
|
* @public
|
|
781
811
|
*/
|
|
@@ -791,12 +821,12 @@ export interface ModifyEndpointMessage {
|
|
|
791
821
|
* attribute is N, the current call to <code>ModifyEndpoint</code> does two things: </p>
|
|
792
822
|
* <ul>
|
|
793
823
|
* <li>
|
|
794
|
-
* <p>It replaces any endpoint settings that already exist with new values, for settings
|
|
795
|
-
* same names.</p>
|
|
824
|
+
* <p>It replaces any endpoint settings that already exist with new values, for settings
|
|
825
|
+
* with the same names.</p>
|
|
796
826
|
* </li>
|
|
797
827
|
* <li>
|
|
798
|
-
* <p>It creates new endpoint settings that you specify in the call, for settings with
|
|
799
|
-
* names. </p>
|
|
828
|
+
* <p>It creates new endpoint settings that you specify in the call, for settings with
|
|
829
|
+
* different names. </p>
|
|
800
830
|
* </li>
|
|
801
831
|
* </ul>
|
|
802
832
|
* <p>For example, if you call <code>create-endpoint ... --endpoint-settings '\{"a":1\}'
|
|
@@ -1053,14 +1083,14 @@ export interface ModifyReplicationConfigMessage {
|
|
|
1053
1083
|
*/
|
|
1054
1084
|
ComputeConfig?: ComputeConfig | undefined;
|
|
1055
1085
|
/**
|
|
1056
|
-
* <p>The Amazon Resource Name (ARN) of the source endpoint for
|
|
1057
|
-
*
|
|
1086
|
+
* <p>The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless
|
|
1087
|
+
* replication configuration.</p>
|
|
1058
1088
|
* @public
|
|
1059
1089
|
*/
|
|
1060
1090
|
SourceEndpointArn?: string | undefined;
|
|
1061
1091
|
/**
|
|
1062
|
-
* <p>The Amazon Resource Name (ARN) of the target endpoint for
|
|
1063
|
-
*
|
|
1092
|
+
* <p>The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless
|
|
1093
|
+
* replication configuration.</p>
|
|
1064
1094
|
* @public
|
|
1065
1095
|
*/
|
|
1066
1096
|
TargetEndpointArn?: string | undefined;
|
|
@@ -1099,11 +1129,11 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
1099
1129
|
ApplyImmediately?: boolean | undefined;
|
|
1100
1130
|
/**
|
|
1101
1131
|
* <p>The compute and memory capacity of the replication instance as defined for the specified
|
|
1102
|
-
* replication instance class. For example to specify the instance class dms.c4.large, set
|
|
1103
|
-
* <p>
|
|
1104
|
-
* <
|
|
1105
|
-
*
|
|
1106
|
-
*
|
|
1132
|
+
* replication instance class. For example to specify the instance class dms.c4.large, set
|
|
1133
|
+
* this parameter to <code>"dms.c4.large"</code>.</p>
|
|
1134
|
+
* <p>For more information on the settings and capacities for the available replication
|
|
1135
|
+
* instance classes, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth"> Selecting the right DMS replication instance for your
|
|
1136
|
+
* migration</a>. </p>
|
|
1107
1137
|
* @public
|
|
1108
1138
|
*/
|
|
1109
1139
|
ReplicationInstanceClass?: string | undefined;
|
|
@@ -1127,8 +1157,8 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
1127
1157
|
*/
|
|
1128
1158
|
PreferredMaintenanceWindow?: string | undefined;
|
|
1129
1159
|
/**
|
|
1130
|
-
* <p> Specifies whether the replication instance is a Multi-AZ deployment. You can't set
|
|
1131
|
-
*
|
|
1160
|
+
* <p> Specifies whether the replication instance is a Multi-AZ deployment. You can't set
|
|
1161
|
+
* the <code>AvailabilityZone</code> parameter if the Multi-AZ parameter is set to
|
|
1132
1162
|
* <code>true</code>. </p>
|
|
1133
1163
|
* @public
|
|
1134
1164
|
*/
|
|
@@ -1136,7 +1166,7 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
1136
1166
|
/**
|
|
1137
1167
|
* <p>The engine version number of the replication instance.</p>
|
|
1138
1168
|
* <p>When modifying a major engine version of an instance, also set
|
|
1139
|
-
*
|
|
1169
|
+
* <code>AllowMajorVersionUpgrade</code> to <code>true</code>.</p>
|
|
1140
1170
|
* @public
|
|
1141
1171
|
*/
|
|
1142
1172
|
EngineVersion?: string | undefined;
|
|
@@ -1176,14 +1206,15 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
1176
1206
|
*/
|
|
1177
1207
|
ReplicationInstanceIdentifier?: string | undefined;
|
|
1178
1208
|
/**
|
|
1179
|
-
* <p>The type of IP address protocol used by a replication instance,
|
|
1180
|
-
*
|
|
1181
|
-
*
|
|
1209
|
+
* <p>The type of IP address protocol used by a replication instance, such as IPv4 only or
|
|
1210
|
+
* Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet
|
|
1211
|
+
* supported.</p>
|
|
1182
1212
|
* @public
|
|
1183
1213
|
*/
|
|
1184
1214
|
NetworkType?: string | undefined;
|
|
1185
1215
|
/**
|
|
1186
|
-
* <p>Specifies the settings required for kerberos authentication when modifying a replication
|
|
1216
|
+
* <p>Specifies the settings required for kerberos authentication when modifying a replication
|
|
1217
|
+
* instance.</p>
|
|
1187
1218
|
* @public
|
|
1188
1219
|
*/
|
|
1189
1220
|
KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
|
|
@@ -1283,17 +1314,17 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1283
1314
|
*/
|
|
1284
1315
|
ReplicationTaskIdentifier?: string | undefined;
|
|
1285
1316
|
/**
|
|
1286
|
-
* <p>The migration type. Valid values: <code>full-load</code> | <code>cdc</code> |
|
|
1317
|
+
* <p>The migration type. Valid values: <code>full-load</code> | <code>cdc</code> |
|
|
1318
|
+
* <code>full-load-and-cdc</code>
|
|
1287
1319
|
* </p>
|
|
1288
1320
|
* @public
|
|
1289
1321
|
*/
|
|
1290
1322
|
MigrationType?: MigrationTypeValue | undefined;
|
|
1291
1323
|
/**
|
|
1292
|
-
* <p>When using the CLI or boto3, provide the path of the JSON file that contains the
|
|
1293
|
-
*
|
|
1294
|
-
*
|
|
1295
|
-
*
|
|
1296
|
-
* </p>
|
|
1324
|
+
* <p>When using the CLI or boto3, provide the path of the JSON file that contains the table
|
|
1325
|
+
* mappings. Precede the path with <code>file://</code>. For example, <code>--table-mappings
|
|
1326
|
+
* file://mappingfile.json</code>. When working with the DMS API, provide the JSON as the
|
|
1327
|
+
* parameter value. </p>
|
|
1297
1328
|
* @public
|
|
1298
1329
|
*/
|
|
1299
1330
|
TableMappings?: string | undefined;
|
|
@@ -1338,9 +1369,9 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1338
1369
|
*/
|
|
1339
1370
|
CdcStopPosition?: string | undefined;
|
|
1340
1371
|
/**
|
|
1341
|
-
* <p>Supplemental information that the task requires to migrate the data for certain source
|
|
1342
|
-
*
|
|
1343
|
-
*
|
|
1372
|
+
* <p>Supplemental information that the task requires to migrate the data for certain source
|
|
1373
|
+
* and target endpoints. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html">Specifying Supplemental Data for
|
|
1374
|
+
* Task Settings</a> in the <i>Database Migration Service User Guide.</i>
|
|
1344
1375
|
* </p>
|
|
1345
1376
|
* @public
|
|
1346
1377
|
*/
|
|
@@ -1396,15 +1427,17 @@ export interface RebootReplicationInstanceMessage {
|
|
|
1396
1427
|
/**
|
|
1397
1428
|
* <p>If this parameter is <code>true</code>, the reboot is conducted through a Multi-AZ
|
|
1398
1429
|
* failover. If the instance isn't configured for Multi-AZ, then you can't specify
|
|
1399
|
-
*
|
|
1430
|
+
* <code>true</code>. ( <code>--force-planned-failover</code> and
|
|
1431
|
+
* <code>--force-failover</code> can't both be set to <code>true</code>.)</p>
|
|
1400
1432
|
* @public
|
|
1401
1433
|
*/
|
|
1402
1434
|
ForceFailover?: boolean | undefined;
|
|
1403
1435
|
/**
|
|
1404
|
-
* <p>If this parameter is <code>true</code>, the reboot is conducted through a planned
|
|
1405
|
-
* where resources are released and cleaned up prior to conducting the
|
|
1406
|
-
* If the instance isn''t configured for Multi-AZ, then you can't specify
|
|
1407
|
-
*
|
|
1436
|
+
* <p>If this parameter is <code>true</code>, the reboot is conducted through a planned
|
|
1437
|
+
* Multi-AZ failover where resources are released and cleaned up prior to conducting the
|
|
1438
|
+
* failover. If the instance isn''t configured for Multi-AZ, then you can't specify
|
|
1439
|
+
* <code>true</code>. ( <code>--force-planned-failover</code> and
|
|
1440
|
+
* <code>--force-failover</code> can't both be set to <code>true</code>.)</p>
|
|
1408
1441
|
* @public
|
|
1409
1442
|
*/
|
|
1410
1443
|
ForcePlannedFailover?: boolean | undefined;
|
|
@@ -1548,7 +1581,8 @@ export interface ReloadTablesResponse {
|
|
|
1548
1581
|
*/
|
|
1549
1582
|
export interface RemoveTagsFromResourceMessage {
|
|
1550
1583
|
/**
|
|
1551
|
-
* <p>An DMS resource from which you want to remove tag(s). The value for this parameter is
|
|
1584
|
+
* <p>An DMS resource from which you want to remove tag(s). The value for this parameter is
|
|
1585
|
+
* an Amazon Resource Name (ARN).</p>
|
|
1552
1586
|
* @public
|
|
1553
1587
|
*/
|
|
1554
1588
|
ResourceArn: string | undefined;
|
|
@@ -1603,7 +1637,8 @@ export interface StartDataMigrationMessage {
|
|
|
1603
1637
|
DataMigrationIdentifier: string | undefined;
|
|
1604
1638
|
/**
|
|
1605
1639
|
* <p>Specifies the start type for the data migration. Valid values include
|
|
1606
|
-
*
|
|
1640
|
+
* <code>start-replication</code>, <code>reload-target</code>, and
|
|
1641
|
+
* <code>resume-processing</code>.</p>
|
|
1607
1642
|
* @public
|
|
1608
1643
|
*/
|
|
1609
1644
|
StartType: StartReplicationMigrationTypeValue | undefined;
|
|
@@ -1835,28 +1870,76 @@ export interface StartReplicationMessage {
|
|
|
1835
1870
|
ReplicationConfigArn: string | undefined;
|
|
1836
1871
|
/**
|
|
1837
1872
|
* <p>The replication type.</p>
|
|
1838
|
-
* <p>When the replication type is <code>full-load</code> or <code>full-load-and-cdc</code>,
|
|
1839
|
-
* for the first run of the replication is
|
|
1840
|
-
* <
|
|
1841
|
-
*
|
|
1873
|
+
* <p>When the replication type is <code>full-load</code> or <code>full-load-and-cdc</code>,
|
|
1874
|
+
* the only valid value for the first run of the replication is
|
|
1875
|
+
* <code>start-replication</code>. This option will start the replication.</p>
|
|
1876
|
+
* <p>You can also use <a>ReloadTables</a> to reload specific tables that failed
|
|
1877
|
+
* during replication instead of restarting the replication.</p>
|
|
1842
1878
|
* <p>The <code>resume-processing</code> option isn't applicable for a full-load replication,
|
|
1843
1879
|
* because you can't resume partially loaded tables during the full load phase.</p>
|
|
1844
|
-
* <p>For a <code>full-load-and-cdc</code> replication, DMS migrates table data, and then
|
|
1845
|
-
* that occur on the source. To load all the tables again, and start
|
|
1846
|
-
* use <code>reload-target</code>. Otherwise use
|
|
1847
|
-
*
|
|
1880
|
+
* <p>For a <code>full-load-and-cdc</code> replication, DMS migrates table data, and then
|
|
1881
|
+
* applies data changes that occur on the source. To load all the tables again, and start
|
|
1882
|
+
* capturing source changes, use <code>reload-target</code>. Otherwise use
|
|
1883
|
+
* <code>resume-processing</code>, to replicate the changes from the last stop
|
|
1884
|
+
* position.</p>
|
|
1848
1885
|
* @public
|
|
1849
1886
|
*/
|
|
1850
1887
|
StartReplicationType: string | undefined;
|
|
1851
1888
|
/**
|
|
1852
|
-
* <p>
|
|
1853
|
-
*
|
|
1889
|
+
* <p>User-defined settings for the premigration assessment. The possible values are:</p>
|
|
1890
|
+
* <ul>
|
|
1891
|
+
* <li>
|
|
1892
|
+
* <p>
|
|
1893
|
+
* <code>ResultLocationFinder</code>: The folder within an Amazon Amazon S3 bucket where
|
|
1894
|
+
* you want DMS to store the results of this assessment run.</p>
|
|
1895
|
+
* </li>
|
|
1896
|
+
* <li>
|
|
1897
|
+
* <p>
|
|
1898
|
+
* <code>ResultEncryptionMode</code>: The supported values are <code>SSE_KMS</code>
|
|
1899
|
+
* and <code>SSE_S3</code>. If these values are not provided, then the files are not
|
|
1900
|
+
* encrypted at rest. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.KMSKeys">Creating
|
|
1901
|
+
* Amazon Web Services KMS keys to encrypt Amazon Amazon S3 target objects</a>.</p>
|
|
1902
|
+
* </li>
|
|
1903
|
+
* <li>
|
|
1904
|
+
* <p>
|
|
1905
|
+
* <code>ResultKmsKeyArn</code>: The ARN of a customer KMS encryption key that you
|
|
1906
|
+
* specify when you set <code>ResultEncryptionMode</code> to
|
|
1907
|
+
* <code>SSE_KMS</code>.</p>
|
|
1908
|
+
* </li>
|
|
1909
|
+
* <li>
|
|
1910
|
+
* <p>
|
|
1911
|
+
* <code>IncludeOnly</code>: A space-separated list of names for specific individual
|
|
1912
|
+
* assessments that you want to include. These names come from the default list of
|
|
1913
|
+
* individual assessments that Database Migration Service supports for the associated migration.</p>
|
|
1914
|
+
* </li>
|
|
1915
|
+
* <li>
|
|
1916
|
+
* <p>
|
|
1917
|
+
* <code>Exclude</code>: A space-separated list of names for specific individual
|
|
1918
|
+
* assessments that you want to exclude. These names come from the default list of
|
|
1919
|
+
* individual assessments that Database Migration Service supports for the associated migration.</p>
|
|
1920
|
+
* </li>
|
|
1921
|
+
* <li>
|
|
1922
|
+
* <p>
|
|
1923
|
+
* <code>FailOnAssessmentFailure</code>: A configurable setting you can set to
|
|
1924
|
+
* <code>true</code> (the default setting) or <code>false</code>. Use this setting to
|
|
1925
|
+
* to stop the replication from starting automatically if the assessment fails. This can
|
|
1926
|
+
* help you evaluate the issue that is preventing the replication from running
|
|
1927
|
+
* successfully.</p>
|
|
1928
|
+
* </li>
|
|
1929
|
+
* </ul>
|
|
1930
|
+
* @public
|
|
1931
|
+
*/
|
|
1932
|
+
PremigrationAssessmentSettings?: string | undefined;
|
|
1933
|
+
/**
|
|
1934
|
+
* <p>Indicates the start time for a change data capture (CDC) operation. Use either
|
|
1935
|
+
* <code>CdcStartTime</code> or <code>CdcStartPosition</code> to specify when you want a
|
|
1936
|
+
* CDC operation to start. Specifying both values results in an error.</p>
|
|
1854
1937
|
* @public
|
|
1855
1938
|
*/
|
|
1856
1939
|
CdcStartTime?: Date | undefined;
|
|
1857
1940
|
/**
|
|
1858
1941
|
* <p>Indicates when you want a change data capture (CDC) operation to start. Use either
|
|
1859
|
-
*
|
|
1942
|
+
* <code>CdcStartPosition</code> or <code>CdcStartTime</code> to specify when you want a
|
|
1860
1943
|
* CDC operation to start. Specifying both values results in an error.</p>
|
|
1861
1944
|
* <p>The value can be in date, checkpoint, or LSN/SCN format.</p>
|
|
1862
1945
|
* @public
|
|
@@ -1905,16 +1988,18 @@ export interface StartReplicationTaskMessage {
|
|
|
1905
1988
|
ReplicationTaskArn: string | undefined;
|
|
1906
1989
|
/**
|
|
1907
1990
|
* <p>The type of replication task to start.</p>
|
|
1908
|
-
* <p>When the migration type is <code>full-load</code> or <code>full-load-and-cdc</code>, the
|
|
1909
|
-
*
|
|
1910
|
-
*
|
|
1911
|
-
*
|
|
1912
|
-
*
|
|
1913
|
-
*
|
|
1914
|
-
*
|
|
1915
|
-
*
|
|
1916
|
-
*
|
|
1917
|
-
* changes
|
|
1991
|
+
* <p>When the migration type is <code>full-load</code> or <code>full-load-and-cdc</code>, the
|
|
1992
|
+
* only valid value for the first run of the task is <code>start-replication</code>. This
|
|
1993
|
+
* option will start the migration.</p>
|
|
1994
|
+
* <p>You can also use <a>ReloadTables</a> to reload specific tables that failed
|
|
1995
|
+
* during migration instead of restarting the task.</p>
|
|
1996
|
+
* <p>The <code>resume-processing</code> option isn't applicable for a full-load task, because
|
|
1997
|
+
* you can't resume partially loaded tables during the full load phase.</p>
|
|
1998
|
+
* <p>For a <code>full-load-and-cdc</code> task, DMS migrates table data, and then applies
|
|
1999
|
+
* data changes that occur on the source. To load all the tables again, and start capturing
|
|
2000
|
+
* source changes, use <code>reload-target</code>. Otherwise use
|
|
2001
|
+
* <code>resume-processing</code>, to replicate the changes from the last stop
|
|
2002
|
+
* position.</p>
|
|
1918
2003
|
* @public
|
|
1919
2004
|
*/
|
|
1920
2005
|
StartReplicationTaskType: StartReplicationTaskTypeValue | undefined;
|
|
@@ -2011,7 +2096,8 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
2011
2096
|
*/
|
|
2012
2097
|
ReplicationTaskArn: string | undefined;
|
|
2013
2098
|
/**
|
|
2014
|
-
* <p>ARN of the service role needed to start the assessment run. The role must allow the
|
|
2099
|
+
* <p>ARN of the service role needed to start the assessment run. The role must allow the
|
|
2100
|
+
* <code>iam:PassRole</code> action.</p>
|
|
2015
2101
|
* @public
|
|
2016
2102
|
*/
|
|
2017
2103
|
ServiceAccessRoleArn: string | undefined;
|
|
@@ -2022,8 +2108,8 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
2022
2108
|
*/
|
|
2023
2109
|
ResultLocationBucket: string | undefined;
|
|
2024
2110
|
/**
|
|
2025
|
-
* <p>Folder within an Amazon S3 bucket where you want DMS to store the results of this
|
|
2026
|
-
* run.</p>
|
|
2111
|
+
* <p>Folder within an Amazon S3 bucket where you want DMS to store the results of this
|
|
2112
|
+
* assessment run.</p>
|
|
2027
2113
|
* @public
|
|
2028
2114
|
*/
|
|
2029
2115
|
ResultLocationFolder?: string | undefined;
|
|
@@ -2039,9 +2125,9 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
2039
2125
|
* </li>
|
|
2040
2126
|
* <li>
|
|
2041
2127
|
* <p>
|
|
2042
|
-
* <code>"SSE_KMS"</code> – Key Management Service (KMS) encryption.
|
|
2043
|
-
*
|
|
2044
|
-
*
|
|
2128
|
+
* <code>"SSE_KMS"</code> – Key Management Service (KMS) encryption. This encryption can
|
|
2129
|
+
* use either a custom KMS encryption key that you specify or the default KMS encryption
|
|
2130
|
+
* key that DMS provides.</p>
|
|
2045
2131
|
* </li>
|
|
2046
2132
|
* </ul>
|
|
2047
2133
|
* @public
|
|
@@ -2065,11 +2151,12 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
2065
2151
|
* <code>ReplicationTaskArn</code>.</p>
|
|
2066
2152
|
* <note>
|
|
2067
2153
|
* <p>You can't set a value for <code>IncludeOnly</code> if you also set a value for
|
|
2068
|
-
*
|
|
2069
|
-
*
|
|
2070
|
-
*
|
|
2071
|
-
*
|
|
2072
|
-
*
|
|
2154
|
+
* <code>Exclude</code> in the API operation.
|
|
2155
|
+
* </p>
|
|
2156
|
+
* <p>To identify the names of the default individual assessments that DMS supports for
|
|
2157
|
+
* the associated migration task, run the
|
|
2158
|
+
* <code>DescribeApplicableIndividualAssessments</code> operation using its own
|
|
2159
|
+
* <code>ReplicationTaskArn</code> request parameter.</p>
|
|
2073
2160
|
* </note>
|
|
2074
2161
|
* @public
|
|
2075
2162
|
*/
|
|
@@ -2081,17 +2168,18 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
2081
2168
|
* <code>ReplicationTaskArn</code>.</p>
|
|
2082
2169
|
* <note>
|
|
2083
2170
|
* <p>You can't set a value for <code>Exclude</code> if you also set a value for
|
|
2084
|
-
*
|
|
2085
|
-
* <p>To identify the names of the default individual assessments that DMS
|
|
2086
|
-
*
|
|
2087
|
-
*
|
|
2088
|
-
*
|
|
2171
|
+
* <code>IncludeOnly</code> in the API operation.</p>
|
|
2172
|
+
* <p>To identify the names of the default individual assessments that DMS supports for
|
|
2173
|
+
* the associated migration task, run the
|
|
2174
|
+
* <code>DescribeApplicableIndividualAssessments</code> operation using its own
|
|
2175
|
+
* <code>ReplicationTaskArn</code> request parameter.</p>
|
|
2089
2176
|
* </note>
|
|
2090
2177
|
* @public
|
|
2091
2178
|
*/
|
|
2092
2179
|
Exclude?: string[] | undefined;
|
|
2093
2180
|
/**
|
|
2094
|
-
* <p>One or more tags to be assigned to the premigration assessment run that you want to
|
|
2181
|
+
* <p>One or more tags to be assigned to the premigration assessment run that you want to
|
|
2182
|
+
* start.</p>
|
|
2095
2183
|
* @public
|
|
2096
2184
|
*/
|
|
2097
2185
|
Tags?: Tag[] | undefined;
|
|
@@ -2203,11 +2291,9 @@ export interface TestConnectionResponse {
|
|
|
2203
2291
|
*/
|
|
2204
2292
|
export interface UpdateSubscriptionsToEventBridgeMessage {
|
|
2205
2293
|
/**
|
|
2206
|
-
* <p>When set to true, this operation migrates DMS subscriptions for Amazon
|
|
2207
|
-
* notifications no matter what your replication instance version is. If not set or set to
|
|
2208
|
-
* false, this operation runs only when all your replication instances are from DMS
|
|
2209
|
-
* version 3.4.5 or higher.
|
|
2210
|
-
* </p>
|
|
2294
|
+
* <p>When set to true, this operation migrates DMS subscriptions for Amazon
|
|
2295
|
+
* SNS notifications no matter what your replication instance version is. If not set or set to
|
|
2296
|
+
* false, this operation runs only when all your replication instances are from DMS version 3.4.5 or higher. </p>
|
|
2211
2297
|
* @public
|
|
2212
2298
|
*/
|
|
2213
2299
|
ForceMove?: boolean | undefined;
|
|
@@ -2218,7 +2304,8 @@ export interface UpdateSubscriptionsToEventBridgeMessage {
|
|
|
2218
2304
|
*/
|
|
2219
2305
|
export interface UpdateSubscriptionsToEventBridgeResponse {
|
|
2220
2306
|
/**
|
|
2221
|
-
* <p>A string that indicates how many event subscriptions were migrated and how many remain
|
|
2307
|
+
* <p>A string that indicates how many event subscriptions were migrated and how many remain
|
|
2308
|
+
* to be migrated.</p>
|
|
2222
2309
|
* @public
|
|
2223
2310
|
*/
|
|
2224
2311
|
Result?: string | undefined;
|