java.lang.Object
com.amazonaws.services.identitymanagement.model.User
All Implemented Interfaces:
Serializable, Cloneable

public class User extends Object implements Serializable, Cloneable

Contains information about an IAM user entity.

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

See Also:
  • Constructor Details

    • User

      public User()
      Default constructor for User object. Callers should use the setter or fluent setter (with...) methods to initialize the object after creating it.
    • User

      public User(String path, String userName, String userId, String arn, Date createDate)
      Constructs a new User object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
      Parameters:
      path - The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.
      userName - The friendly name identifying the user.
      userId - The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.
      arn - 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 Using IAM guide.
      createDate - The date and time, in ISO 8601 date-time format, when the user was created.
  • Method Details

    • setPath

      public void setPath(String path)

      The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.

      Parameters:
      path - The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.
    • getPath

      public String getPath()

      The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.

      Returns:
      The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.
    • withPath

      public User withPath(String path)

      The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.

      Parameters:
      path - The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setUserName

      public void setUserName(String userName)

      The friendly name identifying the user.

      Parameters:
      userName - The friendly name identifying the user.
    • getUserName

      public String getUserName()

      The friendly name identifying the user.

      Returns:
      The friendly name identifying the user.
    • withUserName

      public User withUserName(String userName)

      The friendly name identifying the user.

      Parameters:
      userName - The friendly name identifying the user.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setUserId

      public void setUserId(String userId)

      The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.

      Parameters:
      userId - The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.
    • getUserId

      public String getUserId()

      The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.

      Returns:
      The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.
    • withUserId

      public User withUserId(String userId)

      The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.

      Parameters:
      userId - The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setArn

      public void setArn(String arn)

      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 Using IAM guide.

      Parameters:
      arn - 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 Using IAM guide.
    • getArn

      public String getArn()

      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 Using IAM guide.

      Returns:
      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 Using IAM guide.
    • withArn

      public User withArn(String arn)

      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 Using IAM guide.

      Parameters:
      arn - 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 Using IAM guide.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setCreateDate

      public void setCreateDate(Date createDate)

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

      Parameters:
      createDate - The date and time, in ISO 8601 date-time format, when the user was created.
    • getCreateDate

      public Date getCreateDate()

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

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

      public User withCreateDate(Date createDate)

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

      Parameters:
      createDate - The date and time, in ISO 8601 date-time format, when the user was created.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • setPasswordLastUsed

      public void setPasswordLastUsed(Date passwordLastUsed)

      The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last sign-in time, see the Credential Reports topic in the Using IAM guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:

      • The user does not have a password

      • The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014

      • there is no sign-in data associated with the user

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

      Parameters:
      passwordLastUsed - The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last sign-in time, see the Credential Reports topic in the Using IAM guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:

      • The user does not have a password

      • The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014

      • there is no sign-in data associated with the user

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

    • getPasswordLastUsed

      public Date getPasswordLastUsed()

      The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last sign-in time, see the Credential Reports topic in the Using IAM guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:

      • The user does not have a password

      • The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014

      • there is no sign-in data associated with the user

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

      Returns:
      The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last sign-in time, see the Credential Reports topic in the Using IAM guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:

      • The user does not have a password

      • The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014

      • there is no sign-in data associated with the user

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

    • withPasswordLastUsed

      public User withPasswordLastUsed(Date passwordLastUsed)

      The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last sign-in time, see the Credential Reports topic in the Using IAM guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:

      • The user does not have a password

      • The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014

      • there is no sign-in data associated with the user

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

      Parameters:
      passwordLastUsed - The date and time, in ISO 8601 date-time format, when the user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last sign-in time, see the Credential Reports topic in the Using IAM guide. If a password is used more than once in a five-minute span, only the first use is returned in this field. This field is null (not present) when:

      • The user does not have a password

      • The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014

      • there is no sign-in data associated with the user

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

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • toString

      public String toString()
      Returns a string representation of this object; useful for testing and debugging.
      Overrides:
      toString in class Object
      Returns:
      A string representation of this object.
      See Also:
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • clone

      public User clone()
      Overrides:
      clone in class Object