| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListQueryLoggingConfigsResponse; |
|
3
|
1
|
|
|
1
|
|
368
|
use Moose; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has QueryLoggingConfigs => (is => 'ro', isa => 'ArrayRef[Paws::Route53::QueryLoggingConfig]', required => 1); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Route53::ListQueryLoggingConfigsResponse |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 NextToken => Str |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
If a response includes the last of the query logging configurations |
|
22
|
|
|
|
|
|
|
that are associated with the current AWS account, C<NextToken> doesn't |
|
23
|
|
|
|
|
|
|
appear in the response. |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
If a response doesn't include the last of the configurations, you can |
|
26
|
|
|
|
|
|
|
get more configurations by submitting another ListQueryLoggingConfigs |
|
27
|
|
|
|
|
|
|
request. Get the value of C<NextToken> that Amazon Route 53 returned in |
|
28
|
|
|
|
|
|
|
the previous response and include it in C<NextToken> in the next |
|
29
|
|
|
|
|
|
|
request. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 B<REQUIRED> QueryLoggingConfigs => ArrayRef[L<Paws::Route53::QueryLoggingConfig>] |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
An array that contains one QueryLoggingConfig element for each |
|
36
|
|
|
|
|
|
|
configuration for DNS query logging that is associated with the current |
|
37
|
|
|
|
|
|
|
AWS account. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
|
43
|
|
|
|
|
|
|
|