Struct cfn::aws::sns::TopicProperties [] [src]

pub struct TopicProperties {
    pub display_name: Option<Value<String>>,
    pub subscription: Option<ValueList<Subscription>>,
    pub topic_name: Option<Value<String>>,
}

Properties for the Topic resource.

Fields

Property DisplayName.

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

Property Subscription.

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

Property TopicName.

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

Trait Implementations

impl Debug for TopicProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for TopicProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<TopicProperties> for Topic
[src]

[src]

Performs the conversion.

Auto Trait Implementations