Interface IpAddresses.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpAddresses.Builder,IpAddresses>,SdkBuilder<IpAddresses.Builder,IpAddresses>,SdkPojo
- Enclosing class:
- IpAddresses
public static interface IpAddresses.Builder extends SdkPojo, CopyableBuilder<IpAddresses.Builder,IpAddresses>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IpAddresses.BuilderipV4Addresses(String... ipV4Addresses)The IpV4 address of the network.IpAddresses.BuilderipV4Addresses(Collection<String> ipV4Addresses)The IpV4 address of the network.IpAddresses.BuilderipV6Addresses(String... ipV6Addresses)The IpV6 address for the network and node component.IpAddresses.BuilderipV6Addresses(Collection<String> ipV6Addresses)The IpV6 address for the network and node component.-
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
-
ipV4Addresses
IpAddresses.Builder ipV4Addresses(Collection<String> ipV4Addresses)
The IpV4 address of the network.
- Parameters:
ipV4Addresses- The IpV4 address of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipV4Addresses
IpAddresses.Builder ipV4Addresses(String... ipV4Addresses)
The IpV4 address of the network.
- Parameters:
ipV4Addresses- The IpV4 address of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipV6Addresses
IpAddresses.Builder ipV6Addresses(Collection<String> ipV6Addresses)
The IpV6 address for the network and node component.
- Parameters:
ipV6Addresses- The IpV6 address for the network and node component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipV6Addresses
IpAddresses.Builder ipV6Addresses(String... ipV6Addresses)
The IpV6 address for the network and node component.
- Parameters:
ipV6Addresses- The IpV6 address for the network and node component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-