Struct rusoto_iot::ThingTypeProperties [] [src]

pub struct ThingTypeProperties {
    pub searchable_attributes: Option<Vec<String>>,
    pub thing_type_description: Option<String>,
}

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

Fields

A list of searchable thing attribute names.

The description of the thing type.

Trait Implementations

impl Default for ThingTypeProperties
[src]

[src]

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

impl Debug for ThingTypeProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ThingTypeProperties
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations