[][src]Struct rusoto_securityhub::AwsIamAccessKeyDetails

pub struct AwsIamAccessKeyDetails {
    pub access_key_id: Option<String>,
    pub account_id: Option<String>,
    pub created_at: Option<String>,
    pub principal_id: Option<String>,
    pub principal_name: Option<String>,
    pub principal_type: Option<String>,
    pub session_context: Option<AwsIamAccessKeySessionContext>,
    pub status: Option<String>,
}

IAM access key details related to a finding.

Fields

access_key_id: Option<String>

The identifier of the access key.

account_id: Option<String>

The AWS account ID of the account for the key.

created_at: Option<String>

Indicates when the IAM access key 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.

principal_id: Option<String>

The ID of the principal associated with an access key.

principal_name: Option<String>

The name of the principal.

principal_type: Option<String>

The type of principal associated with an access key.

session_context: Option<AwsIamAccessKeySessionContext>

Information about the session that the key was used for.

status: Option<String>

The status of the IAM access key related to a finding.

Trait Implementations

impl Clone for AwsIamAccessKeyDetails[src]

impl Debug for AwsIamAccessKeyDetails[src]

impl Default for AwsIamAccessKeyDetails[src]

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

impl PartialEq<AwsIamAccessKeyDetails> for AwsIamAccessKeyDetails[src]

impl Serialize for AwsIamAccessKeyDetails[src]

impl StructuralPartialEq for AwsIamAccessKeyDetails[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.