line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListReusableDelegationSetsResponse; |
3
|
1
|
|
|
1
|
|
442
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
379
|
|
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has DelegationSets => (is => 'ro', isa => 'ArrayRef[Paws::Route53::DelegationSet]', required => 1); |
5
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool', required => 1); |
6
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has MaxItems => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::Route53::ListReusableDelegationSetsResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 B<REQUIRED> DelegationSets => ArrayRef[L<Paws::Route53::DelegationSet>] |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
A complex type that contains one C<DelegationSet> element for each |
25
|
|
|
|
|
|
|
reusable delegation set that was created by the current AWS account. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 B<REQUIRED> IsTruncated => Bool |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
A flag that indicates whether there are more reusable delegation sets |
32
|
|
|
|
|
|
|
to be listed. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 Marker => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
For the second and subsequent calls to C<ListReusableDelegationSets>, |
39
|
|
|
|
|
|
|
C<Marker> is the value that you specified for the C<marker> parameter |
40
|
|
|
|
|
|
|
in the request that produced the current response. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 B<REQUIRED> MaxItems => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The value that you specified for the C<maxitems> parameter in the call |
47
|
|
|
|
|
|
|
to C<ListReusableDelegationSets> that produced the current response. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 NextMarker => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
If C<IsTruncated> is C<true>, the value of C<NextMarker> identifies the |
54
|
|
|
|
|
|
|
next reusable delegation set that Amazon Route 53 will return if you |
55
|
|
|
|
|
|
|
submit another C<ListReusableDelegationSets> request and specify the |
56
|
|
|
|
|
|
|
value of C<NextMarker> in the C<marker> parameter. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |
62
|
|
|
|
|
|
|
|