AWS Security ChangesHomeSearch

AWS cli documentation change

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

File: cli/latest/reference/dms/modify-data-provider.md

Summary

Added examples section showing how to modify data providers, including SSL settings and certificate usage

Security assessment

Examples demonstrate security features like SSL encryption (verify-full mode) and certificate management, but don't address specific vulnerabilities

Diff

diff --git a/cli/latest/reference/dms/modify-data-provider.md b/cli/latest/reference/dms/modify-data-provider.md
index 9c4cfef3e..be2d3abf8 100644
--- a//cli/latest/reference/dms/modify-data-provider.md
+++ b//cli/latest/reference/dms/modify-data-provider.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
@@ -828,0 +830,45 @@ 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 modify a data provider**
+
+The following `modify-data-provider` example updates the description and server name of a data provider.
+    
+    
+    aws dms modify-data-provider \
+        --data-provider-identifier arn:aws:dms:us-east-1:123456789012:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRS \
+        --description "Updated data provider description" \
+        --engine sqlserver \
+        --settings MicrosoftSqlServerSettings={ServerName=new-source-server.us-east-1.rds.amazonaws.com}
+    
+
+Output:
+    
+    
+    {
+        "DataProvider": {
+            "DataProviderName": "example-data-provider",
+            "DataProviderArn": "arn:aws:dms:us-east-1:123456789012:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRS",
+            "DataProviderCreationTime": "2026-01-09T12:30:00.000000+00:00",
+            "Description": "Updated data provider description",
+            "Engine": "sqlserver",
+            "Settings": {
+                "MicrosoftSqlServerSettings": {
+                    "ServerName": "new-source-server.us-east-1.rds.amazonaws.com",
+                    "Port": 1433,
+                    "DatabaseName": "ExampleDatabase",
+                    "SslMode": "verify-full",
+                    "CertificateArn": "arn:aws:dms:us-east-1:123456789012:cert:EXAMPLEABCDEFGHIJKLMNOPQRS"
+                }
+            }
+        }
+    }
+    
+
+For more information, see [Working with data providers](https://docs.aws.amazon.com/dms/latest/userguide/data-providers.html) in the _AWS Database Migration Service User Guide_.
+
@@ -1342 +1388 @@ DataProvider -> (structure)
-  * [AWS CLI 2.35.19 Command Reference](../../index.html) »
+  * [AWS CLI 2.35.21 Command Reference](../../index.html) »