Interface NetworkOriginConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkOriginConfiguration.Builder,NetworkOriginConfiguration>,SdkBuilder<NetworkOriginConfiguration.Builder,NetworkOriginConfiguration>,SdkPojo
- Enclosing class:
- NetworkOriginConfiguration
public static interface NetworkOriginConfiguration.Builder extends SdkPojo, CopyableBuilder<NetworkOriginConfiguration.Builder,NetworkOriginConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default NetworkOriginConfiguration.BuilderinternetConfiguration(Consumer<InternetConfiguration.Builder> internetConfiguration)The configuration for the Amazon S3 access point or multi-region access point with anInternetorigin.NetworkOriginConfiguration.BuilderinternetConfiguration(InternetConfiguration internetConfiguration)The configuration for the Amazon S3 access point or multi-region access point with anInternetorigin.default NetworkOriginConfiguration.BuildervpcConfiguration(Consumer<VpcConfiguration.Builder> vpcConfiguration)Sets the value of the VpcConfiguration property for this object.NetworkOriginConfiguration.BuildervpcConfiguration(VpcConfiguration vpcConfiguration)Sets the value of the VpcConfiguration property for this object.-
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
-
vpcConfiguration
NetworkOriginConfiguration.Builder vpcConfiguration(VpcConfiguration vpcConfiguration)
Sets the value of the VpcConfiguration property for this object.- Parameters:
vpcConfiguration- The new value for the VpcConfiguration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfiguration
default NetworkOriginConfiguration.Builder vpcConfiguration(Consumer<VpcConfiguration.Builder> vpcConfiguration)
Sets the value of the VpcConfiguration property for this object. This is a convenience method that creates an instance of theVpcConfiguration.Builderavoiding the need to create one manually viaVpcConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovpcConfiguration(VpcConfiguration).- Parameters:
vpcConfiguration- a consumer that will call methods onVpcConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vpcConfiguration(VpcConfiguration)
-
internetConfiguration
NetworkOriginConfiguration.Builder internetConfiguration(InternetConfiguration internetConfiguration)
The configuration for the Amazon S3 access point or multi-region access point with an
Internetorigin.- Parameters:
internetConfiguration- The configuration for the Amazon S3 access point or multi-region access point with anInternetorigin.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
internetConfiguration
default NetworkOriginConfiguration.Builder internetConfiguration(Consumer<InternetConfiguration.Builder> internetConfiguration)
The configuration for the Amazon S3 access point or multi-region access point with an
This is a convenience method that creates an instance of theInternetorigin.InternetConfiguration.Builderavoiding the need to create one manually viaInternetConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tointernetConfiguration(InternetConfiguration).- Parameters:
internetConfiguration- a consumer that will call methods onInternetConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
internetConfiguration(InternetConfiguration)
-
-