[][src]Struct rusoto_route53resolver::IpAddressResponse

pub struct IpAddressResponse {
    pub creation_time: Option<String>,
    pub ip: Option<String>,
    pub ip_id: Option<String>,
    pub modification_time: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub subnet_id: Option<String>,
}

In the response to a GetResolverEndpoint request, information about the IP addresses that the resolver endpoint uses for DNS queries.

Fields

creation_time: Option<String>

The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).

ip: Option<String>

One IP address that the resolver endpoint uses for DNS queries.

ip_id: Option<String>

The ID of one IP address.

modification_time: Option<String>

The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).

status: Option<String>

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.

subnet_id: Option<String>

The ID of one subnet.

Trait Implementations

impl Clone for IpAddressResponse[src]

impl Debug for IpAddressResponse[src]

impl Default for IpAddressResponse[src]

impl<'de> Deserialize<'de> for IpAddressResponse[src]

impl PartialEq<IpAddressResponse> for IpAddressResponse[src]

impl StructuralPartialEq for IpAddressResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.