Class: Aws::ConfigService::Types::PutDeliveryChannelRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-configservice/types.rb

Overview

Note:

When making an API call, you may pass PutDeliveryChannelRequest data as a hash:

{
  delivery_channel: { # required
    name: "ChannelName",
    s3_bucket_name: "String",
    s3_key_prefix: "String",
    sns_topic_arn: "String",
    config_snapshot_delivery_properties: {
      delivery_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
    },
  },
}

The input for the PutDeliveryChannel action.

Instance Attribute Summary collapse

Instance Attribute Details

#delivery_channelTypes::DeliveryChannel

The configuration delivery channel object that delivers the configuration information to an Amazon S3 bucket and to an Amazon SNS topic.



3444
3445
3446
3447
# File 'lib/aws-sdk-configservice/types.rb', line 3444

class PutDeliveryChannelRequest < Struct.new(
  :delivery_channel)
  include Aws::Structure
end