Class: Aws::Route53::Types::ListQueryLoggingConfigsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ListQueryLoggingConfigsResponse
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ 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. -
#query_logging_configs ⇒ Array<Types::QueryLoggingConfig>
An array that contains one [QueryLoggingConfig][1] element for each configuration for DNS query logging that is associated with the current AWS account.
Instance Attribute Details
#next_token ⇒ 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.
5147 5148 5149 5150 5151 5152 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 5147 class ListQueryLoggingConfigsResponse < Struct.new( :query_logging_configs, :next_token) SENSITIVE = [] include Aws::Structure end |
#query_logging_configs ⇒ Array<Types::QueryLoggingConfig>
An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current AWS account.
5147 5148 5149 5150 5151 5152 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 5147 class ListQueryLoggingConfigsResponse < Struct.new( :query_logging_configs, :next_token) SENSITIVE = [] include Aws::Structure end |