Struct cfn::aws::iot::ThingProperties [] [src]

pub struct ThingProperties {
    pub attribute_payload: Option<Value<AttributePayload>>,
    pub thing_name: Option<Value<String>>,
}

Properties for the Thing resource.

Fields

Property AttributePayload.

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

Property ThingName.

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

Trait Implementations

impl Debug for ThingProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ThingProperties
[src]

[src]

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

impl Serialize for ThingProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ThingProperties> for Thing
[src]

[src]

Performs the conversion.

Auto Trait Implementations