Updating the Delivery Channel
When you update the delivery channel, you can set the following options:
-
The Amazon S3 bucket where Amazon Config sends configuration snapshots and configuration history files.
-
How often Amazon Config delivers configuration snapshots to your Amazon S3 bucket.
-
The Amazon SNS topic to which Amazon Config sends notifications about configuration changes.
You can use the Amazon Config console to set the Amazon S3 bucket and the Amazon SNS topic for your delivery channel. For steps to manage these settings, see Setting Up Amazon Config with the Console.
The console does not provide options to rename the delivery channel, set the frequency for configuration snapshots, or delete the delivery channel. To do these tasks, you must use the Amazon CLI, the Amazon Config API, or one of the Amazon SDKs.
The following code examples show how to use PutDeliveryChannel
.
(Optional) You can use the describe-delivery-channels
command to verify that the delivery channel settings are updated:
$ aws configservice describe-delivery-channels { "DeliveryChannels": [ { "configSnapshotDeliveryProperties": { "deliveryFrequency": "Twelve_Hours" }, "snsTopicARN": "arn:aws:sns:us-east-2:123456789012:config-topic", "name": "default", "s3BucketName": "config-bucket-123456789012" } ] }
The following code examples show how to use DescribeDeliveryChannels
.