Struct rusoto_iot::ThingTypeDefinition[][src]

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

The definition of the thing type, including thing type name and description.

Fields

The thing type ARN.

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 for the thing type.

Trait Implementations

impl Default for ThingTypeDefinition
[src]

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

impl Debug for ThingTypeDefinition
[src]

Formats the value using the given formatter. Read more

impl Clone for ThingTypeDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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