Interface AccountInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccountInfo.Builder,AccountInfo>,SdkBuilder<AccountInfo.Builder,AccountInfo>,SdkPojo
- Enclosing class:
- AccountInfo
public static interface AccountInfo.Builder extends SdkPojo, CopyableBuilder<AccountInfo.Builder,AccountInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountInfo.BuilderaccountId(String accountId)The identifier of the AWS account that is assigned to the user.AccountInfo.BuilderaccountName(String accountName)The display name of the AWS account that is assigned to the user.AccountInfo.BuilderemailAddress(String emailAddress)The email address of the AWS account that is assigned to the user.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
accountId
AccountInfo.Builder accountId(String accountId)
The identifier of the AWS account that is assigned to the user.
- Parameters:
accountId- The identifier of the AWS account that is assigned to the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountName
AccountInfo.Builder accountName(String accountName)
The display name of the AWS account that is assigned to the user.
- Parameters:
accountName- The display name of the AWS account that is assigned to the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emailAddress
AccountInfo.Builder emailAddress(String emailAddress)
The email address of the AWS account that is assigned to the user.
- Parameters:
emailAddress- The email address of the AWS account that is assigned to the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-