AWS Security ChangesHomeSearch

AWS cli documentation change

Service: cli · 2026-07-13 · Documentation low

File: cli/latest/reference/dms/describe-migration-projects.md

Summary

Added examples section showing how to describe migration projects, including output with SecretsManagerSecretId, SecretsManagerAccessRoleArn, and CertificateArn fields

Security assessment

The change adds documentation examples showing security features like Secrets Manager integration and certificate usage, but doesn't indicate any security vulnerability being fixed

Diff

diff --git a/cli/latest/reference/dms/describe-migration-projects.md b/cli/latest/reference/dms/describe-migration-projects.md
index 8e98feb8c..1700cb105 100644
--- a//cli/latest/reference/dms/describe-migration-projects.md
+++ b//cli/latest/reference/dms/describe-migration-projects.md
@@ -15 +15 @@
-  * [AWS CLI 2.35.19 Command Reference](../../index.html) »
+  * [AWS CLI 2.35.21 Command Reference](../../index.html) »
@@ -35,0 +36 @@
+    * Examples
@@ -259,0 +261,57 @@ The formatting style for error output. By default, errors are displayed in enhan
+## Examples¶
+
+### Note
+
+To use the following examples, you must have the AWS CLI installed and configured. See the [Getting started guide](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html) in the _AWS CLI User Guide_ for more information.
+
+Unless otherwise stated, all examples have unix-like quotation rules. These examples will need to be adapted to your terminal’s quoting rules. See [Using quotation marks with strings](https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-quoting-strings.html) in the _AWS CLI User Guide_ .
+
+**To describe migration projects**
+
+The following `describe-migration-projects` example retrieves the details of a migration project identified by its ARN.
+    
+    
+    aws dms describe-migration-projects \
+        --filters Name=migration-project-identifier,Values=arn:aws:dms:us-east-1:123456789012:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRS
+    
+
+Output:
+    
+    
+    {
+        "MigrationProjects": [
+            {
+                "MigrationProjectName": "example-migration-project",
+                "MigrationProjectArn": "arn:aws:dms:us-east-1:123456789012:migration-project:EXAMPLEABCDEFGHIJKLMNOPQRS",
+                "MigrationProjectCreationTime": "2026-01-09T12:30:00.000000+00:00",
+                "SourceDataProviderDescriptors": [
+                    {
+                        "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:123456789012:secret:example-source-secret-A1B2C3",
+                        "SecretsManagerAccessRoleArn": "arn:aws:iam::123456789012:role/example-secrets-manager-role",
+                        "DataProviderName": "example-data-provider",
+                        "DataProviderArn": "arn:aws:dms:us-east-1:123456789012:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRS"
+                    }
+                ],
+                "TargetDataProviderDescriptors": [
+                    {
+                        "SecretsManagerSecretId": "arn:aws:secretsmanager:us-east-1:123456789012:secret:example-target-secret-A1B2C3",
+                        "SecretsManagerAccessRoleArn": "arn:aws:iam::123456789012:role/example-secrets-manager-role",
+                        "DataProviderName": "example-data-provider",
+                        "DataProviderArn": "arn:aws:dms:us-east-1:123456789012:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRS"
+                    }
+                ],
+                "InstanceProfileArn": "arn:aws:dms:us-east-1:123456789012:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRS",
+                "InstanceProfileName": "example-instance-profile",
+                "TransformationRules": "{\"rules\":[{\"rule-type\":\"transformation\",\"rule-id\":\"1\",\"rule-name\":\"1\",\"rule-target\":\"schema\",\"rule-action\":\"rename\",\"object-locator\":{\"schema-name\":\"ExampleSchema\"},\"value\":\"TargetSchema\"}]}",
+                "Description": "Example migration project for documentation",
+                "SchemaConversionApplicationAttributes": {
+                    "S3BucketPath": "s3://amzn-s3-demo-bucket",
+                    "S3BucketRoleArn": "arn:aws:iam::123456789012:role/example-s3-access-role"
+                }
+            }
+        ]
+    }
+    
+
+For more information, see [Working with migration projects](https://docs.aws.amazon.com/dms/latest/userguide/migration-projects.html) in the _AWS Database Migration Service User Guide_.
+
@@ -374 +432 @@ MigrationProjects -> (list)
-  * [AWS CLI 2.35.19 Command Reference](../../index.html) »
+  * [AWS CLI 2.35.21 Command Reference](../../index.html) »