Struct rusoto_iot::ListThingGroupsRequest [] [src]

pub struct ListThingGroupsRequest {
    pub max_results: Option<i64>,
    pub name_prefix_filter: Option<String>,
    pub next_token: Option<String>,
    pub parent_group: Option<String>,
    pub recursive: Option<bool>,
}

Fields

The maximum number of results to return at one time.

A filter that limits the results to those with the specified name prefix.

The token used to get the next set of results, or null if there are no additional results.

A filter that limits the results to those with the specified parent group.

If true, return child groups as well.

Trait Implementations

impl Default for ListThingGroupsRequest
[src]

[src]

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

impl Debug for ListThingGroupsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListThingGroupsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations