Struct rusoto_iot::UpdateThingGroupRequest[][src]

pub struct UpdateThingGroupRequest {
    pub expected_version: Option<i64>,
    pub thing_group_name: String,
    pub thing_group_properties: ThingGroupProperties,
}

Fields

The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.

The thing group to update.

The thing group properties.

Trait Implementations

impl Default for UpdateThingGroupRequest
[src]

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

impl Debug for UpdateThingGroupRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateThingGroupRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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