Class: Aws::ConfigService::Types::PutDeliveryChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::PutDeliveryChannelRequest
- Defined in:
- gems/aws-sdk-configservice/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",
s3_kms_key_arn: "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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_channel ⇒ Types::DeliveryChannel
The configuration delivery channel object that delivers the configuration information to an Amazon S3 bucket and to an Amazon SNS topic.
Instance Attribute Details
#delivery_channel ⇒ Types::DeliveryChannel
The configuration delivery channel object that delivers the configuration information to an Amazon S3 bucket and to an Amazon SNS topic.
7005 7006 7007 7008 7009 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7005 class PutDeliveryChannelRequest < Struct.new( :delivery_channel) SENSITIVE = [] include Aws::Structure end |