[][src]Struct rusoto_iam::AccessKey

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

Contains information about an AWS access key.

This data type is used as a response element in the CreateAccessKey and ListAccessKeys operations.

The SecretAccessKey value is returned only in response to CreateAccessKey. You can get a secret access key only when you first create an access key; you cannot recover the secret access key later. If you lose a secret access key, you must create a new access key.

Fields

access_key_id: String

The ID for this access key.

create_date: Option<String>

The date when the access key was created.

secret_access_key: String

The secret key used to sign requests.

status: String

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

user_name: String

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

Trait Implementations

impl Clone for AccessKey[src]

impl Debug for AccessKey[src]

impl Default for AccessKey[src]

impl PartialEq<AccessKey> for AccessKey[src]

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