Interface Account.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Account.Builder,Account>,SdkBuilder<Account.Builder,Account>,SdkPojo
- Enclosing class:
- Account
public static interface Account.Builder extends SdkPojo, CopyableBuilder<Account.Builder,Account>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Account.BuilderaccountId(String accountId)The account identifier of the Amazon Web Services account.Account.BuilderemailAddress(String emailAddress)The Amazon Web Services account root user email address for the Amazon Web Services account.-
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, sdkFields
-
-
-
-
Method Detail
-
accountId
Account.Builder accountId(String accountId)
The account identifier of the Amazon Web Services account.
- Parameters:
accountId- The account identifier of the Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emailAddress
Account.Builder emailAddress(String emailAddress)
The Amazon Web Services account root user email address for the Amazon Web Services account.
- Parameters:
emailAddress- The Amazon Web Services account root user email address for the Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-