Interface IpAddressRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpAddressRequest.Builder,IpAddressRequest>,SdkBuilder<IpAddressRequest.Builder,IpAddressRequest>,SdkPojo
- Enclosing class:
- IpAddressRequest
public static interface IpAddressRequest.Builder extends SdkPojo, CopyableBuilder<IpAddressRequest.Builder,IpAddressRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IpAddressRequest.Builderip(String ip)The IPv4 address that you want to use for DNS queries.IpAddressRequest.Builderipv6(String ipv6)The IPv6 address that you want to use for DNS queries.IpAddressRequest.BuildersubnetId(String subnetId)The ID of the subnet that contains the IP address.-
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
-
subnetId
IpAddressRequest.Builder subnetId(String subnetId)
The ID of the subnet that contains the IP address.
- Parameters:
subnetId- The ID of the subnet that contains the IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ip
IpAddressRequest.Builder ip(String ip)
The IPv4 address that you want to use for DNS queries.
- Parameters:
ip- The IPv4 address that you want to use for DNS queries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipv6
IpAddressRequest.Builder ipv6(String ipv6)
The IPv6 address that you want to use for DNS queries.
- Parameters:
ipv6- The IPv6 address that you want to use for DNS queries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-