AWS cli documentation change
Summary
Updated AWS CLI version references from 2.35.19 to 2.35.21 and added new 'Examples' section demonstrating describe-instance-profiles command with security configurations
Security assessment
The change adds an example showing security features including KMS encryption ('KmsKeyArn'), network isolation ('PubliclyAccessible: false'), and VPC security groups. Documents security best practices but doesn't address a specific vulnerability.
Diff
diff --git a/cli/latest/reference/dms/describe-instance-profiles.md b/cli/latest/reference/dms/describe-instance-profiles.md index bdbadc6cb..32b8bae67 100644 --- a//cli/latest/reference/dms/describe-instance-profiles.md +++ b//cli/latest/reference/dms/describe-instance-profiles.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 @@ -253,0 +255,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 describe instance profiles** + +The following `describe-instance-profiles` example retrieves the details of an instance profile identified by its ARN. + + + aws dms describe-instance-profiles \ + --filters Name=instance-profile-identifier,Values=arn:aws:dms:us-east-1:123456789012:instance-profile:EXAMPLEABCDEFGHIJKLMNOPQRS + + +Output: + + + { + "InstanceProfiles": [ + { + "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_. + @@ -324 +366 @@ InstanceProfiles -> (list) - * [AWS CLI 2.35.19 Command Reference](../../index.html) » + * [AWS CLI 2.35.21 Command Reference](../../index.html) »