Interface VpcConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcConfiguration.Builder,VpcConfiguration>,SdkBuilder<VpcConfiguration.Builder,VpcConfiguration>,SdkPojo
- Enclosing class:
- VpcConfiguration
public static interface VpcConfiguration.Builder extends SdkPojo, CopyableBuilder<VpcConfiguration.Builder,VpcConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcConfiguration.BuilderipAddressType(String ipAddressType)The IP address type for cluster network configuration parameters.VpcConfiguration.BuilderipAddressType(IPAddressType ipAddressType)The IP address type for cluster network configuration parameters.VpcConfiguration.BuildersecurityGroupIds(String... securityGroupIds)The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.VpcConfiguration.BuildersecurityGroupIds(Collection<String> securityGroupIds)The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.VpcConfiguration.BuildersubnetIds(String... subnetIds)The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.VpcConfiguration.BuildersubnetIds(Collection<String> subnetIds)The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.VpcConfiguration.BuildervpcId(String vpcId)The identifier of the VPC endpoint.-
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
-
vpcId
VpcConfiguration.Builder vpcId(String vpcId)
The identifier of the VPC endpoint.
- Parameters:
vpcId- The identifier of the VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfiguration.Builder securityGroupIds(Collection<String> securityGroupIds)
The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
- Parameters:
securityGroupIds- The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfiguration.Builder securityGroupIds(String... securityGroupIds)
The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.
- Parameters:
securityGroupIds- The unique identifier of the VPC security group applied to the VPC endpoint ENI for the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
VpcConfiguration.Builder subnetIds(Collection<String> subnetIds)
The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
- Parameters:
subnetIds- The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
VpcConfiguration.Builder subnetIds(String... subnetIds)
The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.
- Parameters:
subnetIds- The identifier of the subnet that the Privatelink VPC endpoint uses to connect to the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddressType
VpcConfiguration.Builder ipAddressType(String ipAddressType)
The IP address type for cluster network configuration parameters. The following type is available:
-
IP_V4 – IP address version 4
- Parameters:
ipAddressType- The IP address type for cluster network configuration parameters. The following type is available:-
IP_V4 – IP address version 4
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IPAddressType,IPAddressType
-
-
ipAddressType
VpcConfiguration.Builder ipAddressType(IPAddressType ipAddressType)
The IP address type for cluster network configuration parameters. The following type is available:
-
IP_V4 – IP address version 4
- Parameters:
ipAddressType- The IP address type for cluster network configuration parameters. The following type is available:-
IP_V4 – IP address version 4
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IPAddressType,IPAddressType
-
-
-