AWS Security ChangesHomeSearch

AWS cli documentation change

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

File: cli/latest/reference/dms/delete-instance-profile.md

Summary

Added examples section showing instance profile deletion with KMS encryption and VPC security groups

Security assessment

New example includes KmsKeyArn and VpcSecurityGroups parameters, documenting encryption and network security features. No evidence of security vulnerability fixes.

Diff

diff --git a/cli/latest/reference/dms/delete-instance-profile.md b/cli/latest/reference/dms/delete-instance-profile.md
index ca93e0c9d..7582398ad 100644
--- a//cli/latest/reference/dms/delete-instance-profile.md
+++ b//cli/latest/reference/dms/delete-instance-profile.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
@@ -211,0 +213,39 @@ 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 delete an instance profile**
+
+The following `delete-instance-profile` example deletes an instance profile identified by its ARN.
+    
+    
+    aws dms delete-instance-profile \
+        --instance-profile-identifier arn:aws:dms:us-east-1:123456789012:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRS
+    
+
+Output:
+    
+    
+    {
+        "InstanceProfile": {
+            "InstanceProfileArn": "arn:aws:dms:us-east-1:123456789012:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRS",
+            "KmsKeyArn": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
+            "PubliclyAccessible": false,
+            "NetworkType": "IPV4",
+            "InstanceProfileName": "example-instance-profile",
+            "Description": "Example instance profile for documentation",
+            "InstanceProfileCreationTime": "2026-01-09T12:30:00.000000+00:00",
+            "SubnetGroupIdentifier": "example-replication-subnet-group",
+            "VpcSecurityGroups": [
+                "sg-0123456789abcdef0"
+            ]
+        }
+    }
+    
+
+For more information, see [Working with instance profiles](https://docs.aws.amazon.com/dms/latest/userguide/instance-profiles.html) in the _AWS Database Migration Service User Guide_.
+
@@ -272 +312 @@ InstanceProfile -> (structure)
-  * [AWS CLI 2.35.19 Command Reference](../../index.html) »
+  * [AWS CLI 2.35.21 Command Reference](../../index.html) »