[][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

The ID for this access key.

The date when the access key was created.

The secret key used to sign requests.

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

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

Trait Implementations

impl Clone for AccessKey
[src]

Performs copy-assignment from source. Read more

impl Default for AccessKey
[src]

impl PartialEq<AccessKey> for AccessKey
[src]

impl Debug for AccessKey
[src]

Auto Trait Implementations

impl Send for AccessKey

impl Sync for AccessKey

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T