Interface CustomRoutingDestinationDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomRoutingDestinationDescription.Builder,CustomRoutingDestinationDescription>,SdkBuilder<CustomRoutingDestinationDescription.Builder,CustomRoutingDestinationDescription>,SdkPojo
- Enclosing class:
- CustomRoutingDestinationDescription
public static interface CustomRoutingDestinationDescription.Builder extends SdkPojo, CopyableBuilder<CustomRoutingDestinationDescription.Builder,CustomRoutingDestinationDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomRoutingDestinationDescription.BuilderfromPort(Integer fromPort)The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.CustomRoutingDestinationDescription.Builderprotocols(Collection<Protocol> protocols)The protocol for the endpoint group that is associated with a custom routing accelerator.CustomRoutingDestinationDescription.Builderprotocols(Protocol... protocols)The protocol for the endpoint group that is associated with a custom routing accelerator.CustomRoutingDestinationDescription.BuilderprotocolsWithStrings(String... protocols)The protocol for the endpoint group that is associated with a custom routing accelerator.CustomRoutingDestinationDescription.BuilderprotocolsWithStrings(Collection<String> protocols)The protocol for the endpoint group that is associated with a custom routing accelerator.CustomRoutingDestinationDescription.BuildertoPort(Integer toPort)The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.-
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
-
fromPort
CustomRoutingDestinationDescription.Builder fromPort(Integer fromPort)
The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
- Parameters:
fromPort- The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toPort
CustomRoutingDestinationDescription.Builder toPort(Integer toPort)
The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.
- Parameters:
toPort- The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocolsWithStrings
CustomRoutingDestinationDescription.Builder protocolsWithStrings(Collection<String> protocols)
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
- Parameters:
protocols- The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocolsWithStrings
CustomRoutingDestinationDescription.Builder protocolsWithStrings(String... protocols)
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
- Parameters:
protocols- The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocols
CustomRoutingDestinationDescription.Builder protocols(Collection<Protocol> protocols)
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
- Parameters:
protocols- The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocols
CustomRoutingDestinationDescription.Builder protocols(Protocol... protocols)
The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.
- Parameters:
protocols- The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-