pub struct ListQueryLoggingConfigsRequest {
pub hosted_zone_id: Option<String>,
pub max_results: Option<String>,
pub next_token: Option<String>,
}Fields§
§hosted_zone_id: Option<String>(Optional) If you want to list the query logging configuration that is associated with a hosted zone, specify the ID in HostedZoneId.
If you don't specify a hosted zone ID, ListQueryLoggingConfigs returns all of the configurations that are associated with the current AWS account.
max_results: Option<String>(Optional) The maximum number of query logging configurations that you want Amazon Route 53 to return in response to the current request. If the current AWS account has more than MaxResults configurations, use the value of NextToken in the response to get the next page of results.
If you don't specify a value for MaxResults, Route 53 returns up to 100 configurations.
next_token: Option<String>(Optional) If the current AWS account has more than MaxResults query logging configurations, use NextToken to get the second and subsequent pages of results.
For the first ListQueryLoggingConfigs request, omit this value.
For the second and subsequent requests, get the value of NextToken from the previous response and specify that value for NextToken in the request.
Trait Implementations§
Source§impl Clone for ListQueryLoggingConfigsRequest
impl Clone for ListQueryLoggingConfigsRequest
Source§fn clone(&self) -> ListQueryLoggingConfigsRequest
fn clone(&self) -> ListQueryLoggingConfigsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListQueryLoggingConfigsRequest
impl Default for ListQueryLoggingConfigsRequest
Source§fn default() -> ListQueryLoggingConfigsRequest
fn default() -> ListQueryLoggingConfigsRequest
Source§impl PartialEq for ListQueryLoggingConfigsRequest
impl PartialEq for ListQueryLoggingConfigsRequest
Source§fn eq(&self, other: &ListQueryLoggingConfigsRequest) -> bool
fn eq(&self, other: &ListQueryLoggingConfigsRequest) -> bool
self and other values to be equal, and is used by ==.