Class: Aws::IAM::Types::User
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::User
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an IAM user entity.
This data type is used as a response element in the following actions:
-
CreateUser
-
GetUser
-
ListUsers
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) that identifies the user.
-
#create_date ⇒ Time
The date and time, in [ISO 8601 date-time format], when the user was created.
-
#password_last_used ⇒ Time
The date and time, in [ISO 8601 date-time format], when the user’s password was last used to sign in to an AWS website.
-
#path ⇒ String
The path to the user.
-
#user_id ⇒ String
The stable and unique string identifying the user.
-
#user_name ⇒ String
The friendly name identifying the user.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see [IAM Identifiers] in the *Using IAM* guide.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
8773 8774 8775 8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-iam/types.rb', line 8773 class User < Struct.new( :path, :user_name, :user_id, :arn, :create_date, :password_last_used) include Aws::Structure end |
#create_date ⇒ Time
The date and time, in [ISO 8601 date-time format], when the user was created.
8773 8774 8775 8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-iam/types.rb', line 8773 class User < Struct.new( :path, :user_name, :user_id, :arn, :create_date, :password_last_used) include Aws::Structure end |
#password_last_used ⇒ Time
The date and time, in [ISO 8601 date-time format], when the user’s password was last used to sign in to an AWS website. For a list of AWS websites that capture a user’s last sign-in time, see the [Credential Reports] topic in the *Using IAM* guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:
-
The user does not have a password
-
The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014
-
there is no sign-in data associated with the user
This value is returned only in the GetUser and ListUsers actions.
[1]: www.iso.org/iso/iso8601 [2]: docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
8773 8774 8775 8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-iam/types.rb', line 8773 class User < Struct.new( :path, :user_name, :user_id, :arn, :create_date, :password_last_used) include Aws::Structure end |
#path ⇒ String
The path to the user. For more information about paths, see [IAM Identifiers] in the *Using IAM* guide.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
8773 8774 8775 8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-iam/types.rb', line 8773 class User < Struct.new( :path, :user_name, :user_id, :arn, :create_date, :password_last_used) include Aws::Structure end |
#user_id ⇒ String
The stable and unique string identifying the user. For more information about IDs, see [IAM Identifiers] in the *Using IAM* guide.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
8773 8774 8775 8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-iam/types.rb', line 8773 class User < Struct.new( :path, :user_name, :user_id, :arn, :create_date, :password_last_used) include Aws::Structure end |