Struct aws_sdk_route53resolver::types::IpAddressResponse
source · #[non_exhaustive]pub struct IpAddressResponse { /* private fields */ }
Expand description
In the response to a GetResolverEndpoint request, information about the IP addresses that the Resolver endpoint uses for DNS queries.
Implementations§
source§impl IpAddressResponse
impl IpAddressResponse
sourcepub fn ip(&self) -> Option<&str>
pub fn ip(&self) -> Option<&str>
One IPv4 address that the Resolver endpoint uses for DNS queries.
sourcepub fn ipv6(&self) -> Option<&str>
pub fn ipv6(&self) -> Option<&str>
One IPv6 address that the Resolver endpoint uses for DNS queries.
sourcepub fn status(&self) -> Option<&IpAddressStatus>
pub fn status(&self) -> Option<&IpAddressStatus>
A status code that gives the current status of the request.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
A message that provides additional information about the status of the request.
sourcepub fn creation_time(&self) -> Option<&str>
pub fn creation_time(&self) -> Option<&str>
The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).
sourcepub fn modification_time(&self) -> Option<&str>
pub fn modification_time(&self) -> Option<&str>
The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).
source§impl IpAddressResponse
impl IpAddressResponse
sourcepub fn builder() -> IpAddressResponseBuilder
pub fn builder() -> IpAddressResponseBuilder
Creates a new builder-style object to manufacture IpAddressResponse
.
Trait Implementations§
source§impl Clone for IpAddressResponse
impl Clone for IpAddressResponse
source§fn clone(&self) -> IpAddressResponse
fn clone(&self) -> IpAddressResponse
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for IpAddressResponse
impl Debug for IpAddressResponse
source§impl PartialEq<IpAddressResponse> for IpAddressResponse
impl PartialEq<IpAddressResponse> for IpAddressResponse
source§fn eq(&self, other: &IpAddressResponse) -> bool
fn eq(&self, other: &IpAddressResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.