Interface PublicIpv4PoolRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PublicIpv4PoolRange.Builder,PublicIpv4PoolRange>,SdkBuilder<PublicIpv4PoolRange.Builder,PublicIpv4PoolRange>,SdkPojo
- Enclosing class:
- PublicIpv4PoolRange
public static interface PublicIpv4PoolRange.Builder extends SdkPojo, CopyableBuilder<PublicIpv4PoolRange.Builder,PublicIpv4PoolRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PublicIpv4PoolRange.BuilderaddressCount(Integer addressCount)The number of addresses in the range.PublicIpv4PoolRange.BuilderavailableAddressCount(Integer availableAddressCount)The number of available addresses in the range.PublicIpv4PoolRange.BuilderfirstAddress(String firstAddress)The first IP address in the range.PublicIpv4PoolRange.BuilderlastAddress(String lastAddress)The last IP address in the 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, sdkFields
-
-
-
-
Method Detail
-
firstAddress
PublicIpv4PoolRange.Builder firstAddress(String firstAddress)
The first IP address in the range.
- Parameters:
firstAddress- The first IP address in the range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastAddress
PublicIpv4PoolRange.Builder lastAddress(String lastAddress)
The last IP address in the range.
- Parameters:
lastAddress- The last IP address in the range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addressCount
PublicIpv4PoolRange.Builder addressCount(Integer addressCount)
The number of addresses in the range.
- Parameters:
addressCount- The number of addresses in the range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
availableAddressCount
PublicIpv4PoolRange.Builder availableAddressCount(Integer availableAddressCount)
The number of available addresses in the range.
- Parameters:
availableAddressCount- The number of available addresses in the range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-