Struct rusoto_iam::AccessKey [] [src]

pub struct AccessKey {
    pub access_key_id: AccessKeyIdType,
    pub create_date: Option<DateType>,
    pub secret_access_key: AccessKeySecretType,
    pub status: StatusType,
    pub user_name: UserNameType,
}

Contains information about an AWS access key.

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

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 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 Default for AccessKey
[src]

Returns the "default value" for a type. Read more

impl Debug for AccessKey
[src]

Formats the value using the given formatter.

impl Clone for AccessKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more