Struct rusoto_iot::AddThingToThingGroupRequest[][src]

pub struct AddThingToThingGroupRequest {
    pub thing_arn: Option<String>,
    pub thing_group_arn: Option<String>,
    pub thing_group_name: Option<String>,
    pub thing_name: Option<String>,
}

Fields

The ARN of the thing to add to a group.

The ARN of the group to which you are adding a thing.

The name of the group to which you are adding a thing.

The name of the thing to add to a group.

Trait Implementations

impl Default for AddThingToThingGroupRequest
[src]

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

impl Debug for AddThingToThingGroupRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddThingToThingGroupRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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