Interface ReceiverAddress.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReceiverAddress.Builder,ReceiverAddress>,SdkBuilder<ReceiverAddress.Builder,ReceiverAddress>,SdkPojo
- Enclosing class:
- ReceiverAddress
public static interface ReceiverAddress.Builder extends SdkPojo, CopyableBuilder<ReceiverAddress.Builder,ReceiverAddress>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReceiverAddress.BuilderaddressLine1(String addressLine1)The first line of the address.ReceiverAddress.BuilderaddressLine2(String addressLine2)The second line of the address, if applicable.ReceiverAddress.BuilderaddressLine3(String addressLine3)The third line of the address, if applicable.ReceiverAddress.Buildercity(String city)The city that the address is in.ReceiverAddress.BuildercompanyName(String companyName)A unique company name.ReceiverAddress.BuildercountryCode(String countryCode)The country code for the country the address is in.ReceiverAddress.BuilderdistrictOrCounty(String districtOrCounty)The district or country the address is located in.ReceiverAddress.BuilderpostalCode(String postalCode)The postal code associated with the address.ReceiverAddress.BuilderstateOrRegion(String stateOrRegion)The state, region, or province the address is located.-
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
-
addressLine1
ReceiverAddress.Builder addressLine1(String addressLine1)
The first line of the address.
- Parameters:
addressLine1- The first line of the address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addressLine2
ReceiverAddress.Builder addressLine2(String addressLine2)
The second line of the address, if applicable.
- Parameters:
addressLine2- The second line of the address, if applicable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addressLine3
ReceiverAddress.Builder addressLine3(String addressLine3)
The third line of the address, if applicable.
- Parameters:
addressLine3- The third line of the address, if applicable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
districtOrCounty
ReceiverAddress.Builder districtOrCounty(String districtOrCounty)
The district or country the address is located in.
- Parameters:
districtOrCounty- The district or country the address is located in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
city
ReceiverAddress.Builder city(String city)
The city that the address is in.
- Parameters:
city- The city that the address is in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stateOrRegion
ReceiverAddress.Builder stateOrRegion(String stateOrRegion)
The state, region, or province the address is located.
- Parameters:
stateOrRegion- The state, region, or province the address is located.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
countryCode
ReceiverAddress.Builder countryCode(String countryCode)
The country code for the country the address is in.
- Parameters:
countryCode- The country code for the country the address is in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
companyName
ReceiverAddress.Builder companyName(String companyName)
A unique company name.
- Parameters:
companyName- A unique company name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postalCode
ReceiverAddress.Builder postalCode(String postalCode)
The postal code associated with the address.
- Parameters:
postalCode- The postal code associated with the address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-