Skip to content

Commit e7db4d8

Browse files
author
awstools
committed
feat(client-database-migration-service): Support replicationConfigArn in DMS DescribeApplicableIndividualAssessments API.
1 parent b77c92f commit e7db4d8

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export interface DescribeApplicableIndividualAssessmentsCommandOutput
6666
* const input = { // DescribeApplicableIndividualAssessmentsMessage
6767
* ReplicationTaskArn: "STRING_VALUE",
6868
* ReplicationInstanceArn: "STRING_VALUE",
69+
* ReplicationConfigArn: "STRING_VALUE",
6970
* SourceEngineName: "STRING_VALUE",
7071
* TargetEngineName: "STRING_VALUE",
7172
* MigrationType: "full-load" || "cdc" || "full-load-and-cdc",

clients/client-database-migration-service/src/models/models_0.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8778,6 +8778,13 @@ export interface DescribeApplicableIndividualAssessmentsMessage {
87788778
*/
87798779
ReplicationInstanceArn?: string | undefined;
87808780

8781+
/**
8782+
* <p>Amazon Resource Name (ARN) of a serverless replication on which you want to base the default
8783+
* list of individual assessments.</p>
8784+
* @public
8785+
*/
8786+
ReplicationConfigArn?: string | undefined;
8787+
87818788
/**
87828789
* <p>Name of a database engine that the specified replication instance supports as a
87838790
* source.</p>

codegen/sdk-codegen/aws-models/database-migration-service.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5844,6 +5844,12 @@
58445844
"smithy.api#documentation": "<p>ARN of a replication instance on which you want to base the default list of individual\n assessments.</p>"
58455845
}
58465846
},
5847+
"ReplicationConfigArn": {
5848+
"target": "com.amazonaws.databasemigrationservice#String",
5849+
"traits": {
5850+
"smithy.api#documentation": "<p>Amazon Resource Name (ARN) of a serverless replication on which you want to base the default\n list of individual assessments.</p>"
5851+
}
5852+
},
58475853
"SourceEngineName": {
58485854
"target": "com.amazonaws.databasemigrationservice#String",
58495855
"traits": {

0 commit comments

Comments
 (0)