[][src]Struct rusoto_securityhub::AwsIamInstanceProfile

pub struct AwsIamInstanceProfile {
    pub arn: Option<String>,
    pub create_date: Option<String>,
    pub instance_profile_id: Option<String>,
    pub instance_profile_name: Option<String>,
    pub path: Option<String>,
    pub roles: Option<Vec<AwsIamInstanceProfileRole>>,
}

Information about an instance profile.

Fields

arn: Option<String>

The ARN of the instance profile.

create_date: Option<String>

Indicates when the instance profile was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

instance_profile_id: Option<String>

The identifier of the instance profile.

instance_profile_name: Option<String>

The name of the instance profile.

path: Option<String>

The path to the instance profile.

roles: Option<Vec<AwsIamInstanceProfileRole>>

The roles associated with the instance profile.

Trait Implementations

impl Clone for AwsIamInstanceProfile[src]

impl Debug for AwsIamInstanceProfile[src]

impl Default for AwsIamInstanceProfile[src]

impl<'de> Deserialize<'de> for AwsIamInstanceProfile[src]

impl PartialEq<AwsIamInstanceProfile> for AwsIamInstanceProfile[src]

impl Serialize for AwsIamInstanceProfile[src]

impl StructuralPartialEq for AwsIamInstanceProfile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.