class Amazonite::Iam::LoginProfile

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.

Defined in:

iam/login_profile.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(user_name : String, create_date : Time, password_reset_required : Bool | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def create_date : Time #

The date when the password for the user was created.


[View source]
def create_date=(create_date : Time) #

The date when the password for the user was created.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def password_reset_required : Bool | Nil #

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


[View source]
def password_reset_required=(password_reset_required : Bool | Nil) #

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


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def user_name : String #

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


[View source]
def user_name=(user_name : String) #

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


[View source]
def validate! : Nil #

[View source]