Struct rusoto_iot::ThingAttribute [] [src]

pub struct ThingAttribute {
    pub attributes: Option<HashMap<String, String>>,
    pub thing_arn: Option<String>,
    pub thing_name: Option<String>,
    pub thing_type_name: Option<String>,
    pub version: Option<i64>,
}

The properties of the thing, including thing name, thing type name, and a list of thing attributes.

Fields

A list of thing attributes which are name-value pairs.

The thing ARN.

The name of the thing.

The name of the thing type, if the thing has been associated with a type.

The version of the thing record in the registry.

Trait Implementations

impl Default for ThingAttribute
[src]

[src]

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

impl Debug for ThingAttribute
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ThingAttribute
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations