Struct rusoto_iot::ListAttachedPoliciesRequest[][src]

pub struct ListAttachedPoliciesRequest {
    pub marker: Option<String>,
    pub page_size: Option<i64>,
    pub recursive: Option<bool>,
    pub target: String,
}

Fields

The token to retrieve the next set of results.

The maximum number of results to be returned per request.

When true, recursively list attached policies.

The group for which the policies will be listed.

Trait Implementations

impl Default for ListAttachedPoliciesRequest
[src]

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

impl Debug for ListAttachedPoliciesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListAttachedPoliciesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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