Class: AWS::IAM::LoginProfile
- Defined in:
- lib/aws/iam/login_profile.rb
Overview
A login profile is a user name and password that enables a user to log in to the AWS Management Console. Without a login profile, a user cannot access the console. (For information about accessing and using the AWS Management Console, see Using the AWS Management Console.)
Instance Attribute Summary collapse
- #user ⇒ Object readonly
Instance Method Summary collapse
-
#delete ⇒ nil
Deletes the login profile for the specified user, which terminates the user’s ability to access AWS services through the IAM login page.
-
#exists? ⇒ Boolean
True if a login profile exists for the user.
-
#password=(password) ⇒ Object
Sets a new password for the login profile, creating the profile if no profile currently exists for the user.
Instance Attribute Details
#user ⇒ Object (readonly)
41 42 43 |
# File 'lib/aws/iam/login_profile.rb', line 41 def user @user end |
Instance Method Details
#delete ⇒ nil
Deleting a user’s login profile does not prevent a user from accessing IAM through the command line interface or the API. To prevent all user access you must also either make the access key inactive or delete it. For more information about making keys inactive or deleting them, see User#access_keys.
Deletes the login profile for the specified user, which terminates the user’s ability to access AWS services through the IAM login page.
73 74 75 76 |
# File 'lib/aws/iam/login_profile.rb', line 73 def delete client.delete_login_profile() nil end |
#exists? ⇒ Boolean
Returns True if a login profile exists for the user.
79 80 81 82 83 84 85 |
# File 'lib/aws/iam/login_profile.rb', line 79 def exists? client.get_login_profile() rescue Errors::NoSuchEntity => e false else true end |
#password=(password) ⇒ Object
Sets a new password for the login profile, creating the profile if no profile currently exists for the user.
51 52 53 54 55 56 57 58 |
# File 'lib/aws/iam/login_profile.rb', line 51 def password=(password) = (:password => password) client.update_login_profile() password rescue Errors::NoSuchEntity => e client.create_login_profile() password end |