Struct rusoto_iot::DescribeThingResponse[][src]

pub struct DescribeThingResponse {
    pub attributes: Option<HashMap<String, String>>,
    pub default_client_id: Option<String>,
    pub thing_arn: Option<String>,
    pub thing_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 ARN of the thing to describe.

The ID of the thing to describe.

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]

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

impl Debug for DescribeThingResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeThingResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeThingResponse
[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