@aws-sdk/client-database-migration-service 3.758.0 → 3.759.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.
@@ -66,6 +66,7 @@ declare const CancelReplicationTaskAssessmentRunCommand_base: {
66
66
  * // Error: Number("int"),
67
67
  * // Warning: Number("int"),
68
68
  * // Cancelled: Number("int"),
69
+ * // Skipped: Number("int"),
69
70
  * // },
70
71
  * // },
71
72
  * // };
@@ -66,6 +66,7 @@ declare const DeleteReplicationTaskAssessmentRunCommand_base: {
66
66
  * // Error: Number("int"),
67
67
  * // Warning: Number("int"),
68
68
  * // Cancelled: Number("int"),
69
+ * // Skipped: Number("int"),
69
70
  * // },
70
71
  * // },
71
72
  * // };
@@ -82,6 +82,7 @@ declare const DescribeReplicationTaskAssessmentRunsCommand_base: {
82
82
  * // Error: Number("int"),
83
83
  * // Warning: Number("int"),
84
84
  * // Cancelled: Number("int"),
85
+ * // Skipped: Number("int"),
85
86
  * // },
86
87
  * // },
87
88
  * // ],
@@ -88,6 +88,7 @@ declare const DescribeReplicationsCommand_base: {
88
88
  * // Error: Number("int"),
89
89
  * // Warning: Number("int"),
90
90
  * // Cancelled: Number("int"),
91
+ * // Skipped: Number("int"),
91
92
  * // },
92
93
  * // },
93
94
  * // ],
@@ -85,6 +85,7 @@ declare const StartReplicationCommand_base: {
85
85
  * // Error: Number("int"),
86
86
  * // Warning: Number("int"),
87
87
  * // Cancelled: Number("int"),
88
+ * // Skipped: Number("int"),
88
89
  * // },
89
90
  * // },
90
91
  * // ],
@@ -88,6 +88,7 @@ declare const StartReplicationTaskAssessmentRunCommand_base: {
88
88
  * // Error: Number("int"),
89
89
  * // Warning: Number("int"),
90
90
  * // Cancelled: Number("int"),
91
+ * // Skipped: Number("int"),
91
92
  * // },
92
93
  * // },
93
94
  * // };
@@ -78,6 +78,7 @@ declare const StopReplicationCommand_base: {
78
78
  * // Error: Number("int"),
79
79
  * // Warning: Number("int"),
80
80
  * // Cancelled: Number("int"),
81
+ * // Skipped: Number("int"),
81
82
  * // },
82
83
  * // },
83
84
  * // ],
@@ -392,6 +392,11 @@ export interface ReplicationTaskAssessmentRunResultStatistic {
392
392
  * @public
393
393
  */
394
394
  Cancelled?: number | undefined;
395
+ /**
396
+ * <p>The number of individual assessments that were skipped during the assessment run.</p>
397
+ * @public
398
+ */
399
+ Skipped?: number | undefined;
395
400
  }
396
401
  /**
397
402
  * <p>Provides information that describes a premigration assessment run that you have started
@@ -466,8 +471,7 @@ export interface ReplicationTaskAssessmentRun {
466
471
  * </li>
467
472
  * <li>
468
473
  * <p>
469
- * <code>"warning"</code> – At least one individual assessment completed with
470
- * a <code>warning</code> status.</p>
474
+ * <code>"warning"</code> – At least one individual assessment completed with a <code>warning</code> status or all individual assessments were skipped (completed with a <code>skipped</code> status).</p>
471
475
  * </li>
472
476
  * </ul>
473
477
  * @public
@@ -83,6 +83,11 @@ export interface ReplicationTaskIndividualAssessment {
83
83
  * </li>
84
84
  * <li>
85
85
  * <p>
86
+ * <code>"skipped"</code>
87
+ * </p>
88
+ * </li>
89
+ * <li>
90
+ * <p>
86
91
  * <code>"running"</code>
87
92
  * </p>
88
93
  * </li>
@@ -1890,7 +1895,7 @@ export interface StartReplicationMessage {
1890
1895
  * <ul>
1891
1896
  * <li>
1892
1897
  * <p>
1893
- * <code>ResultLocationFinder</code>: The folder within an Amazon Amazon S3 bucket where
1898
+ * <code>ResultLocationFolder</code>: The folder within an Amazon S3 bucket where
1894
1899
  * you want DMS to store the results of this assessment run.</p>
1895
1900
  * </li>
1896
1901
  * <li>
@@ -1898,7 +1903,7 @@ export interface StartReplicationMessage {
1898
1903
  * <code>ResultEncryptionMode</code>: The supported values are <code>SSE_KMS</code>
1899
1904
  * and <code>SSE_S3</code>. If these values are not provided, then the files are not
1900
1905
  * 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>
1906
+ * Amazon Web Services KMS keys to encrypt Amazon S3 target objects</a>.</p>
1902
1907
  * </li>
1903
1908
  * <li>
1904
1909
  * <p>
@@ -88,6 +88,7 @@ export interface ReplicationTaskAssessmentRunResultStatistic {
88
88
  Error?: number | undefined;
89
89
  Warning?: number | undefined;
90
90
  Cancelled?: number | undefined;
91
+ Skipped?: number | undefined;
91
92
  }
92
93
  export interface ReplicationTaskAssessmentRun {
93
94
  ReplicationTaskAssessmentRunArn?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-database-migration-service",
3
3
  "description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
4
- "version": "3.758.0",
4
+ "version": "3.759.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-database-migration-service",