Class: Aws::IAM::Types::GetAccessKeyLastUsedResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetAccessKeyLastUsedResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains the response to a successful [GetAccessKeyLastUsed] request. It is also returned as a member of the [AccessKeyMetaData] structure returned by the [ListAccessKeys] action.
[1]: docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccessKeyLastUsed.html [2]: docs.aws.amazon.com/IAM/latest/APIReference/API_AccessKeyMetaData.html [3]: docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_key_last_used ⇒ Types::AccessKeyLastUsed
Contains information about the last time the access key was used.
-
#user_name ⇒ String
The name of the IAM user that owns this access key.
Instance Attribute Details
#access_key_last_used ⇒ Types::AccessKeyLastUsed
Contains information about the last time the access key was used.
3237 3238 3239 3240 3241 3242 |
# File 'lib/aws-sdk-iam/types.rb', line 3237 class GetAccessKeyLastUsedResponse < Struct.new( :user_name, :access_key_last_used) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user that owns this access key.
3237 3238 3239 3240 3241 3242 |
# File 'lib/aws-sdk-iam/types.rb', line 3237 class GetAccessKeyLastUsedResponse < Struct.new( :user_name, :access_key_last_used) SENSITIVE = [] include Aws::Structure end |