[][src]Struct rusoto_route53resolver::ListResolverEndpointIpAddressesResponse

pub struct ListResolverEndpointIpAddressesResponse {
    pub ip_addresses: Option<Vec<IpAddressResponse>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

ip_addresses: Option<Vec<IpAddressResponse>>

The IP addresses that DNS queries pass through on their way to your network (outbound endpoint) or on the way to Resolver (inbound endpoint).

max_results: Option<i64>

The value that you specified for MaxResults in the request.

next_token: Option<String>

If the specified endpoint has more than MaxResults IP addresses, you can submit another ListResolverEndpointIpAddresses request to get the next group of IP addresses. In the next request, specify the value of NextToken from the previous response.

Trait Implementations

impl Clone for ListResolverEndpointIpAddressesResponse[src]

impl Debug for ListResolverEndpointIpAddressesResponse[src]

impl Default for ListResolverEndpointIpAddressesResponse[src]

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

impl PartialEq<ListResolverEndpointIpAddressesResponse> for ListResolverEndpointIpAddressesResponse[src]

impl StructuralPartialEq for ListResolverEndpointIpAddressesResponse[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> Instrument for T[src]

impl<T> Instrument 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> 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.