Skip to content

Put Delivery Channel

configservice_put_delivery_channel R Documentation

Creates or updates a delivery channel to deliver configuration information and other compliance information

Description

Creates or updates a delivery channel to deliver configuration information and other compliance information.

You can use this operation to create a new delivery channel or to update the Amazon S3 bucket and the Amazon SNS topic of an existing delivery channel.

For more information, see Working with the Delivery Channel in the Config Developer Guide.

One delivery channel per account per Region

You can have only one delivery channel for each account for each Amazon Web Services Region.

Usage

configservice_put_delivery_channel(DeliveryChannel)

Arguments

DeliveryChannel

[required] An object for the delivery channel. A delivery channel sends notifications and updated configuration states.

Value

An empty list.

Request syntax

svc$put_delivery_channel(
  DeliveryChannel = list(
    name = "string",
    s3BucketName = "string",
    s3KeyPrefix = "string",
    s3KmsKeyArn = "string",
    snsTopicARN = "string",
    configSnapshotDeliveryProperties = list(
      deliveryFrequency = "One_Hour"|"Three_Hours"|"Six_Hours"|"Twelve_Hours"|"TwentyFour_Hours"
    )
  )
)