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]

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

impl Debug for ThingAttribute
[src]

Formats the value using the given formatter. Read more

impl Clone for ThingAttribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ThingAttribute
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations