Struct rusoto_route53::ListQueryLoggingConfigsResponse[][src]

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

Fields

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.

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 Default for ListQueryLoggingConfigsResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for ListQueryLoggingConfigsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListQueryLoggingConfigsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListQueryLoggingConfigsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations