AWS cli documentation change
Summary
Added examples section showing how to modify instance profiles, including KMS key and VPC security group configurations
Security assessment
Examples include security features like KMS encryption and VPC security groups, but no evidence of security vulnerability being addressed
Diff
diff --git a/cli/latest/reference/dms/modify-instance-profile.md b/cli/latest/reference/dms/modify-instance-profile.md index 817bd5e63..1325a55d8 100644 --- a//cli/latest/reference/dms/modify-instance-profile.md +++ b//cli/latest/reference/dms/modify-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 @@ -261,0 +263,41 @@ 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 an instance profile** + +The following `modify-instance-profile` example updates the description and network type of an instance profile. + + + aws dms modify-instance-profile \ + --instance-profile-identifier arn:aws:dms:us-east-1:123456789012:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRS \ + --description "Updated instance profile description" \ + --network-type DUAL + + +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": "DUAL", + "InstanceProfileName": "example-instance-profile", + "Description": "Updated instance profile description", + "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_. + @@ -322 +364 @@ InstanceProfile -> (structure) - * [AWS CLI 2.35.19 Command Reference](../../index.html) » + * [AWS CLI 2.35.21 Command Reference](../../index.html) »