line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListQueryLoggingConfigs; |
3
|
1
|
|
|
1
|
|
317
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has HostedZoneId => (is => 'ro', isa => 'Str', query_name => 'hostedzoneid', traits => ['ParamInQuery']); |
5
|
|
|
|
|
|
|
has MaxResults => (is => 'ro', isa => 'Str', query_name => 'maxresults', traits => ['ParamInQuery']); |
6
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str', query_name => 'nexttoken', traits => ['ParamInQuery']); |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
5506
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListQueryLoggingConfigs'); |
11
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2013-04-01/queryloggingconfig'); |
12
|
|
|
|
|
|
|
class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Route53::ListQueryLoggingConfigsResponse'); |
14
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
### main pod documentation begin ### |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Paws::Route53::ListQueryLoggingConfigs - Arguments for method ListQueryLoggingConfigs on Paws::Route53 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ListQueryLoggingConfigs on the |
27
|
|
|
|
|
|
|
Amazon Route 53 service. Use the attributes of this class |
28
|
|
|
|
|
|
|
as arguments to method ListQueryLoggingConfigs. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListQueryLoggingConfigs. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
As an example: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$service_obj->ListQueryLoggingConfigs(Att1 => $value1, Att2 => $value2, ...); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 HostedZoneId => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
(Optional) If you want to list the query logging configuration that is |
44
|
|
|
|
|
|
|
associated with a hosted zone, specify the ID in C<HostedZoneId>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
If you don't specify a hosted zone ID, C<ListQueryLoggingConfigs> |
47
|
|
|
|
|
|
|
returns all of the configurations that are associated with the current |
48
|
|
|
|
|
|
|
AWS account. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 MaxResults => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
(Optional) The maximum number of query logging configurations that you |
55
|
|
|
|
|
|
|
want Amazon Route 53 to return in response to the current request. If |
56
|
|
|
|
|
|
|
the current AWS account has more than C<MaxResults> configurations, use |
57
|
|
|
|
|
|
|
the value of ListQueryLoggingConfigsResponse$NextToken in the response |
58
|
|
|
|
|
|
|
to get the next page of results. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
If you don't specify a value for C<MaxResults>, Amazon Route 53 returns |
61
|
|
|
|
|
|
|
up to 100 configurations. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 NextToken => Str |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
(Optional) If the current AWS account has more than C<MaxResults> query |
68
|
|
|
|
|
|
|
logging configurations, use C<NextToken> to get the second and |
69
|
|
|
|
|
|
|
subsequent pages of results. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
For the first C<ListQueryLoggingConfigs> request, omit this value. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
For the second and subsequent requests, get the value of C<NextToken> |
74
|
|
|
|
|
|
|
from the previous response and specify that value for C<NextToken> in |
75
|
|
|
|
|
|
|
the request. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 SEE ALSO |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ListQueryLoggingConfigs in L<Paws::Route53> |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=cut |
91
|
|
|
|
|
|
|
|