Interface PortRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PortRange.Builder,PortRange>,SdkBuilder<PortRange.Builder,PortRange>,SdkPojo
- Enclosing class:
- PortRange
public static interface PortRange.Builder extends SdkPojo, CopyableBuilder<PortRange.Builder,PortRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortRange.BuilderfromPort(Integer fromPort)The lower limit of the port range.PortRange.BuildertoPort(Integer toPort)The upper limit of the port range.-
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
PortRange.Builder fromPort(Integer fromPort)
The lower limit of the port range. This must be less than or equal to the
ToPortspecification.- Parameters:
fromPort- The lower limit of the port range. This must be less than or equal to theToPortspecification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toPort
PortRange.Builder toPort(Integer toPort)
The upper limit of the port range. This must be greater than or equal to the
FromPortspecification.- Parameters:
toPort- The upper limit of the port range. This must be greater than or equal to theFromPortspecification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-