Interface UpdateSiteAddressRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateSiteAddressRequest.Builder,UpdateSiteAddressRequest>,OutpostsRequest.Builder,SdkBuilder<UpdateSiteAddressRequest.Builder,UpdateSiteAddressRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateSiteAddressRequest
public static interface UpdateSiteAddressRequest.Builder extends OutpostsRequest.Builder, SdkPojo, CopyableBuilder<UpdateSiteAddressRequest.Builder,UpdateSiteAddressRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateSiteAddressRequest.Builderaddress(Consumer<Address.Builder> address)The address for the site.UpdateSiteAddressRequest.Builderaddress(Address address)The address for the site.UpdateSiteAddressRequest.BuilderaddressType(String addressType)The type of the address.UpdateSiteAddressRequest.BuilderaddressType(AddressType addressType)The type of the address.UpdateSiteAddressRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateSiteAddressRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateSiteAddressRequest.BuildersiteId(String siteId)The ID or the Amazon Resource Name (ARN) of the site.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.outposts.model.OutpostsRequest.Builder
build
-
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
-
siteId
UpdateSiteAddressRequest.Builder siteId(String siteId)
The ID or the Amazon Resource Name (ARN) of the site.
- Parameters:
siteId- The ID or the Amazon Resource Name (ARN) of the site.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addressType
UpdateSiteAddressRequest.Builder addressType(String addressType)
The type of the address.
- Parameters:
addressType- The type of the address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AddressType,AddressType
-
addressType
UpdateSiteAddressRequest.Builder addressType(AddressType addressType)
The type of the address.
- Parameters:
addressType- The type of the address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AddressType,AddressType
-
address
UpdateSiteAddressRequest.Builder address(Address address)
The address for the site.
- Parameters:
address- The address for the site.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
address
default UpdateSiteAddressRequest.Builder address(Consumer<Address.Builder> address)
The address for the site.
This is a convenience method that creates an instance of theAddress.Builderavoiding the need to create one manually viaAddress.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaddress(Address).- Parameters:
address- a consumer that will call methods onAddress.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
address(Address)
-
overrideConfiguration
UpdateSiteAddressRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateSiteAddressRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-