Struct rusoto_ec2::IamInstanceProfileAssociation[][src]

pub struct IamInstanceProfileAssociation {
    pub association_id: Option<String>,
    pub iam_instance_profile: Option<IamInstanceProfile>,
    pub instance_id: Option<String>,
    pub state: Option<String>,
    pub timestamp: Option<String>,
}

Describes an association between an IAM instance profile and an instance.

Fields

The ID of the association.

The IAM instance profile.

The ID of the instance.

The state of the association.

The time the IAM instance profile was associated with the instance.

Trait Implementations

impl Default for IamInstanceProfileAssociation
[src]

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

impl Debug for IamInstanceProfileAssociation
[src]

Formats the value using the given formatter. Read more

impl Clone for IamInstanceProfileAssociation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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