Class: Aws::IAM::Types::LoginProfile

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iam/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

Instance Attribute Details

#create_dateTime

The date when the password for the user was created.

Returns:

  • (Time)


7339
7340
7341
7342
7343
7344
7345
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 7339

class LoginProfile < Struct.new(
  :user_name,
  :create_date,
  :password_reset_required)
  SENSITIVE = []
  include Aws::Structure
end

#password_reset_requiredBoolean

Specifies whether the user is required to set a new password on next sign-in.

Returns:

  • (Boolean)


7339
7340
7341
7342
7343
7344
7345
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 7339

class LoginProfile < Struct.new(
  :user_name,
  :create_date,
  :password_reset_required)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

The name of the user, which can be used for signing in to the Amazon Web Services Management Console.

Returns:

  • (String)


7339
7340
7341
7342
7343
7344
7345
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 7339

class LoginProfile < Struct.new(
  :user_name,
  :create_date,
  :password_reset_required)
  SENSITIVE = []
  include Aws::Structure
end