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]

[src]

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

impl Debug for UpdateThingGroupRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateThingGroupRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations