Interface Address.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Address.Builder,Address>,SdkBuilder<Address.Builder,Address>,SdkPojo
- Enclosing class:
- Address
public static interface Address.Builder extends SdkPojo, CopyableBuilder<Address.Builder,Address>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Address.Builderaddress1(String address1)The first line of a customer address.Address.Builderaddress2(String address2)The second line of a customer address.Address.Builderaddress3(String address3)The third line of a customer address.Address.Builderaddress4(String address4)The fourth line of a customer address.Address.Buildercity(String city)The city in which a customer lives.Address.Buildercountry(String country)The country in which a customer lives.Address.Buildercounty(String county)The county in which a customer lives.Address.BuilderpostalCode(String postalCode)The postal code of a customer address.Address.Builderprovince(String province)The province in which a customer lives.Address.Builderstate(String state)The state in which a customer lives.-
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
-
address1
Address.Builder address1(String address1)
The first line of a customer address.
- Parameters:
address1- The first line of a customer address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
address2
Address.Builder address2(String address2)
The second line of a customer address.
- Parameters:
address2- The second line of a customer address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
address3
Address.Builder address3(String address3)
The third line of a customer address.
- Parameters:
address3- The third line of a customer address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
address4
Address.Builder address4(String address4)
The fourth line of a customer address.
- Parameters:
address4- The fourth line of a customer address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
city
Address.Builder city(String city)
The city in which a customer lives.
- Parameters:
city- The city in which a customer lives.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
county
Address.Builder county(String county)
The county in which a customer lives.
- Parameters:
county- The county in which a customer lives.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
Address.Builder state(String state)
The state in which a customer lives.
- Parameters:
state- The state in which a customer lives.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
province
Address.Builder province(String province)
The province in which a customer lives.
- Parameters:
province- The province in which a customer lives.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
country
Address.Builder country(String country)
The country in which a customer lives.
- Parameters:
country- The country in which a customer lives.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postalCode
Address.Builder postalCode(String postalCode)
The postal code of a customer address.
- Parameters:
postalCode- The postal code of a customer address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-