[][src]Struct rusoto_iam::AccessKeyMetadata

pub struct AccessKeyMetadata {
    pub access_key_id: Option<String>,
    pub create_date: Option<String>,
    pub status: Option<String>,
    pub user_name: Option<String>,
}

Contains information about an AWS access key, without its secret key.

This data type is used as a response element in the ListAccessKeys operation.

Fields

access_key_id: Option<String>

The ID for this access key.

create_date: Option<String>

The date when the access key was created.

status: Option<String>

The status of the access key. Active means that the key is valid for API calls; Inactive means it is not.

user_name: Option<String>

The name of the IAM user that the key is associated with.

Trait Implementations

impl Clone for AccessKeyMetadata[src]

impl Debug for AccessKeyMetadata[src]

impl Default for AccessKeyMetadata[src]

impl PartialEq<AccessKeyMetadata> for AccessKeyMetadata[src]

impl StructuralPartialEq for AccessKeyMetadata[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> From<T> 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.