Struct rusoto_iot::DeprecateThingTypeRequest [] [src]

pub struct DeprecateThingTypeRequest {
    pub thing_type_name: String,
    pub undo_deprecate: Option<bool>,
}

The input for the DeprecateThingType operation.

Fields

The name of the thing type to deprecate.

Whether to undeprecate a deprecated thing type. If true, the thing type will not be deprecated anymore and you can associate it with things.

Trait Implementations

impl Default for DeprecateThingTypeRequest
[src]

[src]

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

impl Debug for DeprecateThingTypeRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DeprecateThingTypeRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations