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]

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

impl Debug for DeprecateThingTypeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeprecateThingTypeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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