public class FederatedUser
extends java.lang.Object
implements java.io.Serializable
Identifiers for the federated user that is associated with the credentials.
| コンストラクタと説明 |
|---|
FederatedUser()
Default constructor for a new FederatedUser object.
|
FederatedUser(java.lang.String federatedUserId,
java.lang.String arn)
Constructs a new FederatedUser object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getArn()
The ARN that specifies the federated user that is associated with the
credentials.
|
java.lang.String |
getFederatedUserId()
The string that identifies the federated user associated with the
credentials, similar to the unique ID of an IAM user.
|
int |
hashCode() |
void |
setArn(java.lang.String arn)
The ARN that specifies the federated user that is associated with the
credentials.
|
void |
setFederatedUserId(java.lang.String federatedUserId)
The string that identifies the federated user associated with the
credentials, similar to the unique ID of an IAM user.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
FederatedUser |
withArn(java.lang.String arn)
The ARN that specifies the federated user that is associated with the
credentials.
|
FederatedUser |
withFederatedUserId(java.lang.String federatedUserId)
The string that identifies the federated user associated with the
credentials, similar to the unique ID of an IAM user.
|
public FederatedUser()
public FederatedUser(java.lang.String federatedUserId,
java.lang.String arn)
federatedUserId - The string that identifies the federated user
associated with the credentials, similar to the unique ID of an IAM
user.arn - The ARN that specifies the federated user that is
associated with the credentials. For more information about ARNs and
how to use them in policies, see Identifiers for IAM Entities in Using IAM.public java.lang.String getFederatedUserId()
Constraints:
Length: 2 - 96
Pattern: [\w+=,.@\:-]*
public void setFederatedUserId(java.lang.String federatedUserId)
Constraints:
Length: 2 - 96
Pattern: [\w+=,.@\:-]*
federatedUserId - The string that identifies the federated user associated with the
credentials, similar to the unique ID of an IAM user.public FederatedUser withFederatedUserId(java.lang.String federatedUserId)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 2 - 96
Pattern: [\w+=,.@\:-]*
federatedUserId - The string that identifies the federated user associated with the
credentials, similar to the unique ID of an IAM user.public java.lang.String getArn()
Constraints:
Length: 20 - 2048
public void setArn(java.lang.String arn)
Constraints:
Length: 20 - 2048
arn - The ARN that specifies the federated user that is associated with the
credentials. For more information about ARNs and how to use them in
policies, see Identifiers for IAM Entities in Using IAM.public FederatedUser withArn(java.lang.String arn)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 20 - 2048
arn - The ARN that specifies the federated user that is associated with the
credentials. For more information about ARNs and how to use them in
policies, see Identifiers for IAM Entities in Using IAM.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object