Struct rusoto_iot::UpdateThingGroupsForThingRequest [] [src]

pub struct UpdateThingGroupsForThingRequest {
    pub thing_groups_to_add: Option<Vec<String>>,
    pub thing_groups_to_remove: Option<Vec<String>>,
    pub thing_name: Option<String>,
}

Fields

The groups to which the thing will be added.

The groups from which the thing will be removed.

The thing whose group memberships will be updated.

Trait Implementations

impl Default for UpdateThingGroupsForThingRequest
[src]

[src]

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

impl Debug for UpdateThingGroupsForThingRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateThingGroupsForThingRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations