Class: Aws::IAM::Types::AccessKeyMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AccessKeyMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an AWS access key, without its secret key.
This data type is used as a response element in the ListAccessKeys operation.
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
The ID for this access key.
-
#create_date ⇒ Time
The date when the access key was created.
-
#status ⇒ String
The status of the access key.
-
#user_name ⇒ String
The name of the IAM user that the key is associated with.
Instance Attribute Details
#access_key_id ⇒ String
The ID for this access key.
142 143 144 145 146 147 148 |
# File 'lib/aws-sdk-iam/types.rb', line 142 class AccessKeyMetadata < Struct.new( :user_name, :access_key_id, :status, :create_date) include Aws::Structure end |
#create_date ⇒ Time
The date when the access key was created.
142 143 144 145 146 147 148 |
# File 'lib/aws-sdk-iam/types.rb', line 142 class AccessKeyMetadata < Struct.new( :user_name, :access_key_id, :status, :create_date) include Aws::Structure end |
#status ⇒ String
The status of the access key. ‘Active` means the key is valid for API calls; `Inactive` means it is not.
142 143 144 145 146 147 148 |
# File 'lib/aws-sdk-iam/types.rb', line 142 class AccessKeyMetadata < Struct.new( :user_name, :access_key_id, :status, :create_date) include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user that the key is associated with.
142 143 144 145 146 147 148 |
# File 'lib/aws-sdk-iam/types.rb', line 142 class AccessKeyMetadata < Struct.new( :user_name, :access_key_id, :status, :create_date) include Aws::Structure end |