Struct aws_sdk_ec2::model::IamInstanceProfileAssociation [−][src]
#[non_exhaustive]pub struct IamInstanceProfileAssociation {
pub association_id: Option<String>,
pub instance_id: Option<String>,
pub iam_instance_profile: Option<IamInstanceProfile>,
pub state: Option<IamInstanceProfileAssociationState>,
pub timestamp: Option<Instant>,
}
Expand description
Describes an association between an IAM instance profile and an instance.
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_id: Option<String>
The ID of the association.
instance_id: Option<String>
The ID of the instance.
iam_instance_profile: Option<IamInstanceProfile>
The IAM instance profile.
state: Option<IamInstanceProfileAssociationState>
The state of the association.
timestamp: Option<Instant>
The time the IAM instance profile was associated with the instance.
Implementations
The ID of the association.
The ID of the instance.
The IAM instance profile.
The state of the association.
Creates a new builder-style object to manufacture IamInstanceProfileAssociation
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for IamInstanceProfileAssociation
impl Sync for IamInstanceProfileAssociation
impl Unpin for IamInstanceProfileAssociation
impl UnwindSafe for IamInstanceProfileAssociation
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more