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]

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

impl Debug for ListThingGroupsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListThingGroupsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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