Amazon.ConfigService.AmazonConfigServiceClient.PutDeliveryChannel C# (CSharp) Method

PutDeliveryChannel() public method

Creates a delivery channel object to deliver configuration information to an Amazon S3 bucket and Amazon SNS topic.

Before you can create a delivery channel, you must create a configuration recorder.

You can use this action to change the Amazon S3 bucket or an Amazon SNS topic of the existing delivery channel. To change the Amazon S3 bucket or an Amazon SNS topic, call this action and specify the changed values for the S3 bucket and the SNS topic. If you specify a different value for either the S3 bucket or the SNS topic, this action will keep the existing value for the parameter that is not changed.

You can have only one delivery channel per region in your account.

/// Your Amazon S3 bucket policy does not permit AWS Config to write to it. /// /// The specified delivery channel name is not valid. /// /// The specified Amazon S3 key prefix is not valid. /// /// The specified Amazon SNS topic does not exist. /// /// You have reached the limit on the number of delivery channels you can create. /// /// There are no configuration recorders available to provide the role needed to describe /// your resources. Create a configuration recorder. /// /// The specified Amazon S3 bucket does not exist. ///
public PutDeliveryChannel ( PutDeliveryChannelRequest request ) : PutDeliveryChannelResponse
request Amazon.ConfigService.Model.PutDeliveryChannelRequest Container for the necessary parameters to execute the PutDeliveryChannel service method.
return PutDeliveryChannelResponse
        public PutDeliveryChannelResponse PutDeliveryChannel(PutDeliveryChannelRequest request)
        {
            var marshaller = new PutDeliveryChannelRequestMarshaller();
            var unmarshaller = PutDeliveryChannelResponseUnmarshaller.Instance;

            return Invoke<PutDeliveryChannelRequest,PutDeliveryChannelResponse>(request, marshaller, unmarshaller);
        }
AmazonConfigServiceClient