[][src]Struct rusoto_route53::ListQueryLoggingConfigsResponse

pub struct ListQueryLoggingConfigsResponse {
    pub next_token: Option<String>,
    pub query_logging_configs: Vec<QueryLoggingConfig>,
}

Fields

next_token: Option<String>

If a response includes the last of the query logging configurations that are associated with the current AWS account, NextToken doesn't appear in the response.

If a response doesn't include the last of the configurations, you can get more configurations by submitting another ListQueryLoggingConfigs request. Get the value of NextToken that Amazon Route 53 returned in the previous response and include it in NextToken in the next request.

query_logging_configs: Vec<QueryLoggingConfig>

An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current AWS account.

Trait Implementations

impl Clone for ListQueryLoggingConfigsResponse[src]

impl Default for ListQueryLoggingConfigsResponse[src]

impl PartialEq<ListQueryLoggingConfigsResponse> for ListQueryLoggingConfigsResponse[src]

impl Debug for ListQueryLoggingConfigsResponse[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,