Struct rusoto_iot::DescribeThingTypeResponse[][src]

pub struct DescribeThingTypeResponse {
    pub thing_type_arn: Option<String>,
    pub thing_type_id: Option<String>,
    pub thing_type_metadata: Option<ThingTypeMetadata>,
    pub thing_type_name: Option<String>,
    pub thing_type_properties: Option<ThingTypeProperties>,
}

The output for the DescribeThingType operation.

Fields

The thing type ARN.

The thing type ID.

The ThingTypeMetadata contains additional information about the thing type including: creation date and time, a value indicating whether the thing type is deprecated, and a date and time when it was deprecated.

The name of the thing type.

The ThingTypeProperties contains information about the thing type including description, and a list of searchable thing attribute names.

Trait Implementations

impl Default for DescribeThingTypeResponse
[src]

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

impl Debug for DescribeThingTypeResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeThingTypeResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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