line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListTrafficPolicyInstancesByHostedZone; |
3
|
1
|
|
|
1
|
|
422
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has HostedZoneId => (is => 'ro', isa => 'Str', query_name => 'id', traits => ['ParamInQuery'], required => 1); |
5
|
|
|
|
|
|
|
has MaxItems => (is => 'ro', isa => 'Str', query_name => 'maxitems', traits => ['ParamInQuery']); |
6
|
|
|
|
|
|
|
has TrafficPolicyInstanceNameMarker => (is => 'ro', isa => 'Str', query_name => 'trafficpolicyinstancename', traits => ['ParamInQuery']); |
7
|
|
|
|
|
|
|
has TrafficPolicyInstanceTypeMarker => (is => 'ro', isa => 'Str', query_name => 'trafficpolicyinstancetype', traits => ['ParamInQuery']); |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
5848
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListTrafficPolicyInstancesByHostedZone'); |
12
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2013-04-01/trafficpolicyinstances/hostedzone'); |
13
|
|
|
|
|
|
|
class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET'); |
14
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Route53::ListTrafficPolicyInstancesByHostedZoneResponse'); |
15
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::Route53::ListTrafficPolicyInstancesByHostedZone - Arguments for method ListTrafficPolicyInstancesByHostedZone on Paws::Route53 |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ListTrafficPolicyInstancesByHostedZone on the |
28
|
|
|
|
|
|
|
Amazon Route 53 service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method ListTrafficPolicyInstancesByHostedZone. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListTrafficPolicyInstancesByHostedZone. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->ListTrafficPolicyInstancesByHostedZone(Att1 => $value1, Att2 => $value2, ...); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
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. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 B<REQUIRED> HostedZoneId => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The ID of the hosted zone that you want to list traffic policy |
45
|
|
|
|
|
|
|
instances for. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 MaxItems => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The maximum number of traffic policy instances to be included in the |
52
|
|
|
|
|
|
|
response body for this request. If you have more than C<MaxItems> |
53
|
|
|
|
|
|
|
traffic policy instances, the value of the C<IsTruncated> element in |
54
|
|
|
|
|
|
|
the response is C<true>, and the values of C<HostedZoneIdMarker>, |
55
|
|
|
|
|
|
|
C<TrafficPolicyInstanceNameMarker>, and |
56
|
|
|
|
|
|
|
C<TrafficPolicyInstanceTypeMarker> represent the first traffic policy |
57
|
|
|
|
|
|
|
instance that Amazon Route 53 will return if you submit another |
58
|
|
|
|
|
|
|
request. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 TrafficPolicyInstanceNameMarker => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
If the value of C<IsTruncated> in the previous response is true, you |
65
|
|
|
|
|
|
|
have more traffic policy instances. To get more traffic policy |
66
|
|
|
|
|
|
|
instances, submit another C<ListTrafficPolicyInstances> request. For |
67
|
|
|
|
|
|
|
the value of C<trafficpolicyinstancename>, specify the value of |
68
|
|
|
|
|
|
|
C<TrafficPolicyInstanceNameMarker> from the previous response, which is |
69
|
|
|
|
|
|
|
the name of the first traffic policy instance in the next group of |
70
|
|
|
|
|
|
|
traffic policy instances. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
If the value of C<IsTruncated> in the previous response was C<false>, |
73
|
|
|
|
|
|
|
there are no more traffic policy instances to get. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 TrafficPolicyInstanceTypeMarker => Str |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
If the value of C<IsTruncated> in the previous response is true, you |
80
|
|
|
|
|
|
|
have more traffic policy instances. To get more traffic policy |
81
|
|
|
|
|
|
|
instances, submit another C<ListTrafficPolicyInstances> request. For |
82
|
|
|
|
|
|
|
the value of C<trafficpolicyinstancetype>, specify the value of |
83
|
|
|
|
|
|
|
C<TrafficPolicyInstanceTypeMarker> from the previous response, which is |
84
|
|
|
|
|
|
|
the type of the first traffic policy instance in the next group of |
85
|
|
|
|
|
|
|
traffic policy instances. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
If the value of C<IsTruncated> in the previous response was C<false>, |
88
|
|
|
|
|
|
|
there are no more traffic policy instances to get. |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
Valid values are: C<"SOA">, C<"A">, C<"TXT">, C<"NS">, C<"CNAME">, C<"MX">, C<"NAPTR">, C<"PTR">, C<"SRV">, C<"SPF">, C<"AAAA">, C<"CAA"> |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head1 SEE ALSO |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ListTrafficPolicyInstancesByHostedZone in L<Paws::Route53> |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=cut |
104
|
|
|
|
|
|
|
|