Struct rusoto_iot::DescribeThingGroupResponse[][src]

pub struct DescribeThingGroupResponse {
    pub thing_group_arn: Option<String>,
    pub thing_group_id: Option<String>,
    pub thing_group_metadata: Option<ThingGroupMetadata>,
    pub thing_group_name: Option<String>,
    pub thing_group_properties: Option<ThingGroupProperties>,
    pub version: Option<i64>,
}

Fields

The thing group ARN.

The thing group ID.

Thing group metadata.

The name of the thing group.

The thing group properties.

The version of the thing group.

Trait Implementations

impl Default for DescribeThingGroupResponse
[src]

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

impl Debug for DescribeThingGroupResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeThingGroupResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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