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]

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

impl Debug for UpdateThingGroupsForThingRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateThingGroupsForThingRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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