Struct rusoto_iot::DescribeThingResponse [] [src]

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

The output from the DescribeThing operation.

Fields

The thing attributes.

The default client ID.

The name of the thing.

The thing type name.

The current version of the thing record in the registry.

To avoid unintentional changes to the information in the registry, you can pass the version information in the expectedVersion parameter of the UpdateThing and DeleteThing calls.

Trait Implementations

impl Default for DescribeThingResponse
[src]

[src]

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

impl Debug for DescribeThingResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeThingResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations