AWS cli documentation change
Summary
Added examples section showing data provider deletion with SSL/TLS security settings
Security assessment
Added example demonstrates 'verify-full' SSL mode and certificate usage for secure database connections. This documents security best practices but doesn't address a specific vulnerability.
Diff
diff --git a/cli/latest/reference/dms/delete-data-provider.md b/cli/latest/reference/dms/delete-data-provider.md index f22ac2f83..3f37807ff 100644 --- a//cli/latest/reference/dms/delete-data-provider.md +++ b//cli/latest/reference/dms/delete-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 @@ -211,0 +213,42 @@ 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 a data provider** + +The following `delete-data-provider` example deletes a data provider identified by its ARN. + + + aws dms delete-data-provider \ + --data-provider-identifier arn:aws:dms:us-east-1:123456789012:data-provider:EXAMPLEABCDEFGHIJKLMNOPQRS + + +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": "Example data provider for documentation", + "Engine": "sqlserver", + "Settings": { + "MicrosoftSqlServerSettings": { + "ServerName": "example-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_. + @@ -725 +768 @@ DataProvider -> (structure) - * [AWS CLI 2.35.19 Command Reference](../../index.html) » + * [AWS CLI 2.35.21 Command Reference](../../index.html) »