Interface IpSet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpSet.Builder,IpSet>,SdkBuilder<IpSet.Builder,IpSet>,SdkPojo
- Enclosing class:
- IpSet
public static interface IpSet.Builder extends SdkPojo, CopyableBuilder<IpSet.Builder,IpSet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description IpSet.BuilderipAddresses(String... ipAddresses)The array of IP addresses in the IP address set.IpSet.BuilderipAddresses(Collection<String> ipAddresses)The array of IP addresses in the IP address set.IpSet.BuilderipAddressFamily(String ipAddressFamily)The types of IP addresses included in this IP set.IpSet.BuilderipAddressFamily(IpAddressFamily ipAddressFamily)The types of IP addresses included in this IP set.IpSet.BuilderipFamily(String ipFamily)Deprecated.IpFamily has been replaced by IpAddressFamily-
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
-
ipFamily
@Deprecated IpSet.Builder ipFamily(String ipFamily)
Deprecated.IpFamily has been replaced by IpAddressFamilyIpFamily is deprecated and has been replaced by IpAddressFamily.
- Parameters:
ipFamily- IpFamily is deprecated and has been replaced by IpAddressFamily.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddresses
IpSet.Builder ipAddresses(Collection<String> ipAddresses)
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
- Parameters:
ipAddresses- The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddresses
IpSet.Builder ipAddresses(String... ipAddresses)
The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.
- Parameters:
ipAddresses- The array of IP addresses in the IP address set. An IP address set can have a maximum of two IP addresses.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddressFamily
IpSet.Builder ipAddressFamily(String ipAddressFamily)
The types of IP addresses included in this IP set.
- Parameters:
ipAddressFamily- The types of IP addresses included in this IP set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IpAddressFamily,IpAddressFamily
-
ipAddressFamily
IpSet.Builder ipAddressFamily(IpAddressFamily ipAddressFamily)
The types of IP addresses included in this IP set.
- Parameters:
ipAddressFamily- The types of IP addresses included in this IP set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IpAddressFamily,IpAddressFamily
-
-