Struct cfn::aws::config::DeliveryChannelProperties [] [src]

pub struct DeliveryChannelProperties {
    pub config_snapshot_delivery_properties: Option<Value<ConfigSnapshotDeliveryProperties>>,
    pub name: Option<Value<String>>,
    pub s3_bucket_name: Value<String>,
    pub s3_key_prefix: Option<Value<String>>,
    pub sns_topic_arn: Option<Value<String>>,
}

Properties for the DeliveryChannel resource.

Fields

Property ConfigSnapshotDeliveryProperties.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property S3BucketName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property S3KeyPrefix.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SnsTopicARN.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for DeliveryChannelProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for DeliveryChannelProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for DeliveryChannelProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for DeliveryChannelProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DeliveryChannelProperties> for DeliveryChannel
[src]

[src]

Performs the conversion.

Auto Trait Implementations