Struct aws_sdk_ec2::operation::describe_iam_instance_profile_associations::DescribeIamInstanceProfileAssociationsInput
source · #[non_exhaustive]pub struct DescribeIamInstanceProfileAssociationsInput {
pub association_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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<i32>The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
next_token: Option<String>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
Implementations§
source§impl DescribeIamInstanceProfileAssociationsInput
impl DescribeIamInstanceProfileAssociationsInput
sourcepub fn association_ids(&self) -> Option<&[String]>
pub fn association_ids(&self) -> Option<&[String]>
The IAM instance profile associations.
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[Filter]>
The filters.
-
instance-id- The ID of the instance. -
state- The state of the association (associating|associated|disassociating).
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
source§impl DescribeIamInstanceProfileAssociationsInput
impl DescribeIamInstanceProfileAssociationsInput
sourcepub fn builder() -> DescribeIamInstanceProfileAssociationsInputBuilder
pub fn builder() -> DescribeIamInstanceProfileAssociationsInputBuilder
Creates a new builder-style object to manufacture DescribeIamInstanceProfileAssociationsInput.
Trait Implementations§
source§impl Clone for DescribeIamInstanceProfileAssociationsInput
impl Clone for DescribeIamInstanceProfileAssociationsInput
source§fn clone(&self) -> DescribeIamInstanceProfileAssociationsInput
fn clone(&self) -> DescribeIamInstanceProfileAssociationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<DescribeIamInstanceProfileAssociationsInput> for DescribeIamInstanceProfileAssociationsInput
impl PartialEq<DescribeIamInstanceProfileAssociationsInput> for DescribeIamInstanceProfileAssociationsInput
source§fn eq(&self, other: &DescribeIamInstanceProfileAssociationsInput) -> bool
fn eq(&self, other: &DescribeIamInstanceProfileAssociationsInput) -> bool
self and other values to be equal, and is used
by ==.