Struct rusoto_iam::GetAccessKeyLastUsedResponse[][src]

pub struct GetAccessKeyLastUsedResponse {
    pub access_key_last_used: Option<AccessKeyLastUsed>,
    pub user_name: Option<String>,
}

Contains the response to a successful GetAccessKeyLastUsed request. It is also returned as a member of the AccessKeyMetaData structure returned by the ListAccessKeys action.

Fields

Contains information about the last time the access key was used.

The name of the AWS IAM user that owns this access key.

Trait Implementations

impl Default for GetAccessKeyLastUsedResponse
[src]

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

impl Debug for GetAccessKeyLastUsedResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetAccessKeyLastUsedResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetAccessKeyLastUsedResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations