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§
§association_ids: Option<Vec<String>>The IAM instance profile associations.
filters: Option<Vec<Filter>>The filters.
-
instance-id- The ID of the instance. -
state- The state of the association (associating|associated|disassociating).
max_results: Option<i64>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.
next_token: Option<String>The token to request the next page of results.
Trait Implementations§
Source§impl Clone for DescribeIamInstanceProfileAssociationsRequest
impl Clone for DescribeIamInstanceProfileAssociationsRequest
Source§fn clone(&self) -> DescribeIamInstanceProfileAssociationsRequest
fn clone(&self) -> DescribeIamInstanceProfileAssociationsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribeIamInstanceProfileAssociationsRequest
impl Default for DescribeIamInstanceProfileAssociationsRequest
Source§fn default() -> DescribeIamInstanceProfileAssociationsRequest
fn default() -> DescribeIamInstanceProfileAssociationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeIamInstanceProfileAssociationsRequest
impl PartialEq for DescribeIamInstanceProfileAssociationsRequest
Source§fn eq(&self, other: &DescribeIamInstanceProfileAssociationsRequest) -> bool
fn eq(&self, other: &DescribeIamInstanceProfileAssociationsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeIamInstanceProfileAssociationsRequest
Auto Trait Implementations§
impl Freeze for DescribeIamInstanceProfileAssociationsRequest
impl RefUnwindSafe for DescribeIamInstanceProfileAssociationsRequest
impl Send for DescribeIamInstanceProfileAssociationsRequest
impl Sync for DescribeIamInstanceProfileAssociationsRequest
impl Unpin for DescribeIamInstanceProfileAssociationsRequest
impl UnwindSafe for DescribeIamInstanceProfileAssociationsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more