Class: Aws::IAM::Types::LoginProfile
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IAM::Types::LoginProfile
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iam/types.rb
 
Overview
Contains the user name and password create date for a user.
This data type is used as a response element in the CreateLoginProfile and GetLoginProfile operations.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #create_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date when the password for the user was created.
 - 
  
    
      #password_reset_required  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether the user is required to set a new password on next sign-in.
 - 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the user, which can be used for signing in to the Amazon Web Services Management Console.
 
Instance Attribute Details
#create_date ⇒ Time
The date when the password for the user was created.
      7507 7508 7509 7510 7511 7512 7513  | 
    
      # File 'lib/aws-sdk-iam/types.rb', line 7507 class LoginProfile < Struct.new( :user_name, :create_date, :password_reset_required) SENSITIVE = [] include Aws::Structure end  | 
  
#password_reset_required ⇒ Boolean
Specifies whether the user is required to set a new password on next sign-in.
      7507 7508 7509 7510 7511 7512 7513  | 
    
      # File 'lib/aws-sdk-iam/types.rb', line 7507 class LoginProfile < Struct.new( :user_name, :create_date, :password_reset_required) SENSITIVE = [] include Aws::Structure end  | 
  
#user_name ⇒ String
The name of the user, which can be used for signing in to the Amazon Web Services Management Console.
      7507 7508 7509 7510 7511 7512 7513  | 
    
      # File 'lib/aws-sdk-iam/types.rb', line 7507 class LoginProfile < Struct.new( :user_name, :create_date, :password_reset_required) SENSITIVE = [] include Aws::Structure end  |