Interface IpAddressResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpAddressResponse.Builder,IpAddressResponse>,SdkBuilder<IpAddressResponse.Builder,IpAddressResponse>,SdkPojo
- Enclosing class:
- IpAddressResponse
public static interface IpAddressResponse.Builder extends SdkPojo, CopyableBuilder<IpAddressResponse.Builder,IpAddressResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IpAddressResponse.BuildercreationTime(String creationTime)The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).IpAddressResponse.Builderip(String ip)One IPv4 address that the Resolver endpoint uses for DNS queries.IpAddressResponse.BuilderipId(String ipId)The ID of one IP address.IpAddressResponse.Builderipv6(String ipv6)One IPv6 address that the Resolver endpoint uses for DNS queries.IpAddressResponse.BuildermodificationTime(String modificationTime)The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).IpAddressResponse.Builderstatus(String status)A status code that gives the current status of the request.IpAddressResponse.Builderstatus(IpAddressStatus status)A status code that gives the current status of the request.IpAddressResponse.BuilderstatusMessage(String statusMessage)A message that provides additional information about the status of the request.IpAddressResponse.BuildersubnetId(String subnetId)The ID of one subnet.-
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
IpAddressResponse.Builder ipId(String ipId)
The ID of one IP address.
- Parameters:
ipId- The ID of one IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetId
IpAddressResponse.Builder subnetId(String subnetId)
The ID of one subnet.
- Parameters:
subnetId- The ID of one subnet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ip
IpAddressResponse.Builder ip(String ip)
One IPv4 address that the Resolver endpoint uses for DNS queries.
- Parameters:
ip- One IPv4 address that the Resolver endpoint uses for DNS queries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipv6
IpAddressResponse.Builder ipv6(String ipv6)
One IPv6 address that the Resolver endpoint uses for DNS queries.
- Parameters:
ipv6- One IPv6 address that the Resolver endpoint uses for DNS queries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
IpAddressResponse.Builder status(String status)
A status code that gives the current status of the request.
- Parameters:
status- A status code that gives the current status of the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IpAddressStatus,IpAddressStatus
-
status
IpAddressResponse.Builder status(IpAddressStatus status)
A status code that gives the current status of the request.
- Parameters:
status- A status code that gives the current status of the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IpAddressStatus,IpAddressStatus
-
statusMessage
IpAddressResponse.Builder statusMessage(String statusMessage)
A message that provides additional information about the status of the request.
- Parameters:
statusMessage- A message that provides additional information about the status of the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
IpAddressResponse.Builder creationTime(String creationTime)
The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).
- Parameters:
creationTime- The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modificationTime
IpAddressResponse.Builder modificationTime(String modificationTime)
The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).
- Parameters:
modificationTime- The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-