Class: Aws::IAM::Types::AccessKeyLastUsed
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AccessKeyLastUsed
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about the last time an AWS access key was used.
This data type is used as a response element in the GetAccessKeyLastUsed action.
Instance Attribute Summary collapse
-
#last_used_date ⇒ Time
The date and time, in [ISO 8601 date-time format], when the access key was most recently used.
-
#region ⇒ String
The AWS region where this access key was most recently used.
-
#service_name ⇒ String
The name of the AWS service with which this access key was most recently used.
Instance Attribute Details
#last_used_date ⇒ Time
The date and time, in [ISO 8601 date-time format], when the access key was most recently used. This field is null when:
-
The user does not have an access key.
-
An access key exists but has never been used, at least not since IAM started tracking this information on April 22nd, 2015.
-
There is no sign-in data associated with the user
109 110 111 112 113 114 |
# File 'lib/aws-sdk-iam/types.rb', line 109 class AccessKeyLastUsed < Struct.new( :last_used_date, :service_name, :region) include Aws::Structure end |
#region ⇒ String
The AWS region where this access key was most recently used. This field is displays “N/A” when:
-
The user does not have an access key.
-
An access key exists but has never been used, at least not since IAM started tracking this information on April 22nd, 2015.
-
There is no sign-in data associated with the user
For more information about AWS regions, see [Regions and Endpoints] in the Amazon Web Services General Reference.
109 110 111 112 113 114 |
# File 'lib/aws-sdk-iam/types.rb', line 109 class AccessKeyLastUsed < Struct.new( :last_used_date, :service_name, :region) include Aws::Structure end |
#service_name ⇒ String
The name of the AWS service with which this access key was most recently used. This field displays “N/A” when:
-
The user does not have an access key.
-
An access key exists but has never been used, at least not since IAM started tracking this information on April 22nd, 2015.
-
There is no sign-in data associated with the user
109 110 111 112 113 114 |
# File 'lib/aws-sdk-iam/types.rb', line 109 class AccessKeyLastUsed < Struct.new( :last_used_date, :service_name, :region) include Aws::Structure end |