List Query Logging Configs
route53_list_query_logging_configs | R Documentation |
Lists the configurations for DNS query logging that are associated with the current Amazon Web Services account or the configuration that is associated with a specified hosted zone¶
Description¶
Lists the configurations for DNS query logging that are associated with the current Amazon Web Services account or the configuration that is associated with a specified hosted zone.
For more information about DNS query logs, see
create_query_logging_config
. Additional information, including the
format of DNS query logs, appears in Logging DNS
Queries
in the Amazon Route 53 Developer Guide.
Usage¶
route53_list_query_logging_configs(HostedZoneId, NextToken, MaxResults)
Arguments¶
HostedZoneId |
(Optional) If you want to list the query logging configuration
that is associated with a hosted zone, specify the ID in
If you don't specify a hosted zone ID,
|
NextToken |
(Optional) If the current Amazon Web Services account has more
than For the first For the second and subsequent requests, get the value of
|
MaxResults |
(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 Amazon Web Services account has more than
If you don't specify a value for |
Value¶
A list with the following syntax:
list(
QueryLoggingConfigs = list(
list(
Id = "string",
HostedZoneId = "string",
CloudWatchLogsLogGroupArn = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_query_logging_configs(
HostedZoneId = "string",
NextToken = "string",
MaxResults = "string"
)