class Amazonite::Iam::User

Overview

Contains information about an IAM user entity.

This data type is used as a response element in the following operations:

Defined in:

iam/user.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(path : String, user_name : String, user_id : String, arn : String, create_date : Time, password_last_used : Time | Nil = nil, permissions_boundary : AttachedPermissionsBoundary | Nil = nil, tags : Array(Tag) | 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 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 IAM User Guide.


[View source]
def arn=(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 IAM User Guide.


[View source]
def create_date : Time #

The date and time, in ISO 8601 date-time format, when the user was created.


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

The date and time, in ISO 8601 date-time format, when the user was created.


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

See Object#hash(hasher)


def password_last_used : Time | Nil #

The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an Amazon Web Services website. For a list of Amazon Web Services websites that capture a user's last sign-in time, see the Credential reports topic in the IAM User Guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. If the field is null (no value), then it indicates that they never signed in with a password. This can be because:

  • The user never had a password.

  • A password exists but has not been used since IAM started tracking this information on October 20, 2014.

A null value does not mean that the user never had a password. Also, if the user does not currently have a password but had one in the past, then this field contains the date and time the most recent password was used.

This value is returned only in the GetUser and ListUsers operations.


[View source]
def password_last_used=(password_last_used : Time | Nil) #

The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an Amazon Web Services website. For a list of Amazon Web Services websites that capture a user's last sign-in time, see the Credential reports topic in the IAM User Guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. If the field is null (no value), then it indicates that they never signed in with a password. This can be because:

  • The user never had a password.

  • A password exists but has not been used since IAM started tracking this information on October 20, 2014.

A null value does not mean that the user never had a password. Also, if the user does not currently have a password but had one in the past, then this field contains the date and time the most recent password was used.

This value is returned only in the GetUser and ListUsers operations.


[View source]
def path : String #

The path to the user. For more information about paths, see IAM identifiers in the IAM User Guide.

The ARN of the policy used to set the permissions boundary for the user.


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

The path to the user. For more information about paths, see IAM identifiers in the IAM User Guide.

The ARN of the policy used to set the permissions boundary for the user.


[View source]
def permissions_boundary : AttachedPermissionsBoundary | Nil #

For more information about permissions boundaries, see Permissions boundaries for IAM identities in the IAM User Guide.


[View source]
def permissions_boundary=(permissions_boundary : AttachedPermissionsBoundary | Nil) #

For more information about permissions boundaries, see Permissions boundaries for IAM identities in the IAM User Guide.


[View source]
def tags : Array(Tag) | Nil #

A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User Guide.


[View source]
def tags=(tags : Array(Tag) | Nil) #

A list of tags that are associated with the user. For more information about tagging, see Tagging IAM resources in the IAM User Guide.


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

[View source]
def user_id : String #

The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM User Guide.


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

The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM User Guide.


[View source]
def user_name : String #

The friendly name identifying the user.


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

The friendly name identifying the user.


[View source]
def validate! : Nil #

[View source]