Updating the Delivery Channel
When you update the delivery channel, you can set the following options:
-
The Amazon S3 bucket where AWS Config sends configuration snapshots and configuration history files.
-
How often AWS Config delivers configuration snapshots to your Amazon S3 bucket.
-
The Amazon SNS topic to which AWS Config sends notifications about configuration changes.
You can use the AWS 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 AWS 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 AWS CLI, the AWS Config API, or one of the AWS 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
.