Struct aws_sdk_route53resolver::model::IpAddressResponse
source · [−]#[non_exhaustive]pub struct IpAddressResponse {
pub ip_id: Option<String>,
pub subnet_id: Option<String>,
pub ip: Option<String>,
pub status: Option<IpAddressStatus>,
pub status_message: Option<String>,
pub creation_time: Option<String>,
pub modification_time: Option<String>,
}Expand description
In the response to a GetResolverEndpoint request, information about the IP addresses that the Resolver endpoint uses for DNS queries.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.ip_id: Option<String>The ID of one IP address.
subnet_id: Option<String>The ID of one subnet.
ip: Option<String>One IP address that the Resolver endpoint uses for DNS queries.
status: Option<IpAddressStatus>A status code that gives the current status of the request.
status_message: Option<String>A message that provides additional information about the status of the request.
creation_time: Option<String>The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).
modification_time: Option<String>The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).
Implementations
sourceimpl IpAddressResponse
impl IpAddressResponse
sourcepub fn ip(&self) -> Option<&str>
pub fn ip(&self) -> Option<&str>
One IP 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).
sourceimpl IpAddressResponse
impl IpAddressResponse
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture IpAddressResponse
Trait Implementations
sourceimpl Clone for IpAddressResponse
impl Clone for IpAddressResponse
sourcefn clone(&self) -> IpAddressResponse
fn clone(&self) -> IpAddressResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for IpAddressResponse
impl Debug for IpAddressResponse
sourceimpl PartialEq<IpAddressResponse> for IpAddressResponse
impl PartialEq<IpAddressResponse> for IpAddressResponse
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &IpAddressResponse) -> bool
fn ne(&self, other: &IpAddressResponse) -> bool
This method tests for !=.
impl StructuralPartialEq for IpAddressResponse
Auto Trait Implementations
impl RefUnwindSafe for IpAddressResponse
impl Send for IpAddressResponse
impl Sync for IpAddressResponse
impl Unpin for IpAddressResponse
impl UnwindSafe for IpAddressResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more