Struct rusoto_iot::ThingTypeDefinition [] [src]

pub struct ThingTypeDefinition {
    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 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]

[src]

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

impl Debug for ThingTypeDefinition
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ThingTypeDefinition
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations