Class: Aws::Route53::Types::ListQueryLoggingConfigsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ListQueryLoggingConfigsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hosted_zone_id ⇒ String
(Optional) If you want to list the query logging configuration that is associated with a hosted zone, specify the ID in ‘HostedZoneId`.
-
#max_results ⇒ String
(Optional) The maximum number of query logging configurations that you want Amazon Route 53 to return in response to the current request.
-
#next_token ⇒ String
(Optional) If the current Amazon Web Services account has more than ‘MaxResults` query logging configurations, use `NextToken` to get the second and subsequent pages of results.
Instance Attribute Details
#hosted_zone_id ⇒ 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 Amazon Web Services account.
5102 5103 5104 5105 5106 5107 5108 |
# File 'lib/aws-sdk-route53/types.rb', line 5102 class ListQueryLoggingConfigsRequest < Struct.new( :hosted_zone_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ 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 Amazon Web Services 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.
5102 5103 5104 5105 5106 5107 5108 |
# File 'lib/aws-sdk-route53/types.rb', line 5102 class ListQueryLoggingConfigsRequest < Struct.new( :hosted_zone_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
(Optional) If the current Amazon Web Services 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.
5102 5103 5104 5105 5106 5107 5108 |
# File 'lib/aws-sdk-route53/types.rb', line 5102 class ListQueryLoggingConfigsRequest < Struct.new( :hosted_zone_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |