line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListTrafficPolicyVersionsResponse; |
3
|
1
|
|
|
1
|
|
403
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has IsTruncated => (is => 'ro', isa => 'Bool', required => 1); |
5
|
|
|
|
|
|
|
has MaxItems => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has TrafficPolicies => (is => 'ro', isa => 'ArrayRef[Paws::Route53::TrafficPolicy]', required => 1); |
7
|
|
|
|
|
|
|
has TrafficPolicyVersionMarker => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::Route53::ListTrafficPolicyVersionsResponse |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 B<REQUIRED> IsTruncated => Bool |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
A flag that indicates whether there are more traffic policies to be |
24
|
|
|
|
|
|
|
listed. If the response was truncated, you can get the next group of |
25
|
|
|
|
|
|
|
traffic policies by submitting another C<ListTrafficPolicyVersions> |
26
|
|
|
|
|
|
|
request and specifying the value of C<NextMarker> in the C<marker> |
27
|
|
|
|
|
|
|
parameter. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 B<REQUIRED> MaxItems => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The value that you specified for the C<maxitems> parameter in the |
34
|
|
|
|
|
|
|
C<ListTrafficPolicyVersions> request that produced the current |
35
|
|
|
|
|
|
|
response. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> TrafficPolicies => ArrayRef[L<Paws::Route53::TrafficPolicy>] |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
A list that contains one C<TrafficPolicy> element for each traffic |
42
|
|
|
|
|
|
|
policy version that is associated with the specified traffic policy. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 B<REQUIRED> TrafficPolicyVersionMarker => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
If C<IsTruncated> is C<true>, the value of |
49
|
|
|
|
|
|
|
C<TrafficPolicyVersionMarker> identifies the first traffic policy that |
50
|
|
|
|
|
|
|
Amazon Route 53 will return if you submit another request. Call |
51
|
|
|
|
|
|
|
C<ListTrafficPolicyVersions> again and specify the value of |
52
|
|
|
|
|
|
|
C<TrafficPolicyVersionMarker> in the C<TrafficPolicyVersionMarker> |
53
|
|
|
|
|
|
|
request parameter. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
This element is present only if C<IsTruncated> is C<true>. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |
61
|
|
|
|
|
|
|
|