Interface IpAddressUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpAddressUpdate.Builder,IpAddressUpdate>,SdkBuilder<IpAddressUpdate.Builder,IpAddressUpdate>,SdkPojo
- Enclosing class:
- IpAddressUpdate
public static interface IpAddressUpdate.Builder extends SdkPojo, CopyableBuilder<IpAddressUpdate.Builder,IpAddressUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IpAddressUpdate.Builderip(String ip)The new IPv4 address.IpAddressUpdate.BuilderipId(String ipId)Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove.IpAddressUpdate.Builderipv6(String ipv6)The new IPv6 address.IpAddressUpdate.BuildersubnetId(String subnetId)The ID of the subnet that includes the IP address that you want to update.-
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
-
ipId
IpAddressUpdate.Builder ipId(String ipId)
Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.
- Parameters:
ipId- Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetId
IpAddressUpdate.Builder subnetId(String subnetId)
The ID of the subnet that includes the IP address that you want to update. To get this ID, use GetResolverEndpoint.
- Parameters:
subnetId- The ID of the subnet that includes the IP address that you want to update. To get this ID, use GetResolverEndpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ip
IpAddressUpdate.Builder ip(String ip)
The new IPv4 address.
- Parameters:
ip- The new IPv4 address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipv6
IpAddressUpdate.Builder ipv6(String ipv6)
The new IPv6 address.
- Parameters:
ipv6- The new IPv6 address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-