Class: Aws::Route53::Types::ListQueryLoggingConfigsResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-route53/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

If a response includes the last of the query logging configurations that are associated with the current Amazon Web Services 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][1

request. Get the value of ‘NextToken`

that Amazon Route 53 returned in the previous response and include it in ‘NextToken` in the next request.

[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_ListQueryLoggingConfigs.html

Returns:

  • (String)


5140
5141
5142
5143
5144
5145
# File 'lib/aws-sdk-route53/types.rb', line 5140

class ListQueryLoggingConfigsResponse < Struct.new(
  :query_logging_configs,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#query_logging_configsArray<Types::QueryLoggingConfig>

An array that contains one [QueryLoggingConfig] element for each configuration for DNS query logging that is associated with the current Amazon Web Services account.

[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_QueryLoggingConfig.html

Returns:



5140
5141
5142
5143
5144
5145
# File 'lib/aws-sdk-route53/types.rb', line 5140

class ListQueryLoggingConfigsResponse < Struct.new(
  :query_logging_configs,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end