Interface NetworkingRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkingRequest.Builder,NetworkingRequest>,SdkBuilder<NetworkingRequest.Builder,NetworkingRequest>,SdkPojo
- Enclosing class:
- NetworkingRequest
public static interface NetworkingRequest.Builder extends SdkPojo, CopyableBuilder<NetworkingRequest.Builder,NetworkingRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkingRequest.BuildersecurityGroupIds(String... securityGroupIds)A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.NetworkingRequest.BuildersecurityGroupIds(Collection<String> securityGroupIds)A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.NetworkingRequest.BuildersubnetIds(String... subnetIds)The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources.NetworkingRequest.BuildersubnetIds(Collection<String> subnetIds)The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources.-
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
-
subnetIds
NetworkingRequest.Builder subnetIds(Collection<String> subnetIds)
The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources. Subnet IDs have the form
subnet-0123456789abcdef0.Subnets can't be in Outposts, Wavelength or an Amazon Web Services Local Zone.
Amazon Web Services PCS currently supports only 1 subnet in this list.
- Parameters:
subnetIds- The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources. Subnet IDs have the formsubnet-0123456789abcdef0.Subnets can't be in Outposts, Wavelength or an Amazon Web Services Local Zone.
Amazon Web Services PCS currently supports only 1 subnet in this list.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
NetworkingRequest.Builder subnetIds(String... subnetIds)
The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources. Subnet IDs have the form
subnet-0123456789abcdef0.Subnets can't be in Outposts, Wavelength or an Amazon Web Services Local Zone.
Amazon Web Services PCS currently supports only 1 subnet in this list.
- Parameters:
subnetIds- The list of subnet IDs where Amazon Web Services PCS creates an Elastic Network Interface (ENI) to enable communication between managed controllers and Amazon Web Services PCS resources. Subnet IDs have the formsubnet-0123456789abcdef0.Subnets can't be in Outposts, Wavelength or an Amazon Web Services Local Zone.
Amazon Web Services PCS currently supports only 1 subnet in this list.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
NetworkingRequest.Builder securityGroupIds(Collection<String> securityGroupIds)
A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
- Parameters:
securityGroupIds- A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
NetworkingRequest.Builder securityGroupIds(String... securityGroupIds)
A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
- Parameters:
securityGroupIds- A list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-