Struct rusoto_iot::CreateThingTypeRequest [] [src]

pub struct CreateThingTypeRequest {
    pub thing_type_name: String,
    pub thing_type_properties: Option<ThingTypeProperties>,
}

The input for the CreateThingType operation.

Fields

The name of the thing type.

The ThingTypeProperties for the thing type to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.

Trait Implementations

impl Default for CreateThingTypeRequest
[src]

[src]

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

impl Debug for CreateThingTypeRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateThingTypeRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations