Struct rusoto_ec2::DescribeIamInstanceProfileAssociationsRequest[][src]

pub struct DescribeIamInstanceProfileAssociationsRequest {
    pub association_ids: Option<Vec<String>>,
    pub filters: Option<Vec<Filter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

One or more IAM instance profile associations.

One or more filters.

  • instance-id - The ID of the instance.

  • state - The state of the association (associating | associated | disassociating | disassociated).

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.

The token to request the next page of results.

Trait Implementations

impl Default for DescribeIamInstanceProfileAssociationsRequest
[src]

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

impl Debug for DescribeIamInstanceProfileAssociationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeIamInstanceProfileAssociationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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