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