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]

[src]

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

impl Debug for AddThingToThingGroupRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AddThingToThingGroupRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations