File Coverage

blib/lib/Paws/Route53/ListTrafficPolicyInstances.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Route53::ListTrafficPolicyInstances;
3 1     1   483 use Moose;
  1         3  
  1         7  
4             has HostedZoneIdMarker => (is => 'ro', isa => 'Str', query_name => 'hostedzoneid', traits => ['ParamInQuery']);
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   6276 use MooseX::ClassAttribute;
  1         2  
  1         8  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListTrafficPolicyInstances');
12             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2013-04-01/trafficpolicyinstances');
13             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Route53::ListTrafficPolicyInstancesResponse');
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::ListTrafficPolicyInstances - Arguments for method ListTrafficPolicyInstances on Paws::Route53
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method ListTrafficPolicyInstances on the
28             Amazon Route 53 service. Use the attributes of this class
29             as arguments to method ListTrafficPolicyInstances.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListTrafficPolicyInstances.
32              
33             As an example:
34              
35             $service_obj->ListTrafficPolicyInstances(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 HostedZoneIdMarker => Str
43              
44             If the value of C<IsTruncated> in the previous response was C<true>,
45             you have more traffic policy instances. To get more traffic policy
46             instances, submit another C<ListTrafficPolicyInstances> request. For
47             the value of C<HostedZoneId>, specify the value of
48             C<HostedZoneIdMarker> from the previous response, which is the hosted
49             zone ID of the first traffic policy instance in the next group of
50             traffic policy instances.
51              
52             If the value of C<IsTruncated> in the previous response was C<false>,
53             there are no more traffic policy instances to get.
54              
55              
56              
57             =head2 MaxItems => Str
58              
59             The maximum number of traffic policy instances that you want Amazon
60             Route 53 to return in response to a C<ListTrafficPolicyInstances>
61             request. If you have more than C<MaxItems> traffic policy instances,
62             the value of the C<IsTruncated> element in the response is C<true>, and
63             the values of C<HostedZoneIdMarker>,
64             C<TrafficPolicyInstanceNameMarker>, and
65             C<TrafficPolicyInstanceTypeMarker> represent the first traffic policy
66             instance in the next group of C<MaxItems> traffic policy instances.
67              
68              
69              
70             =head2 TrafficPolicyInstanceNameMarker => Str
71              
72             If the value of C<IsTruncated> in the previous response was C<true>,
73             you have more traffic policy instances. To get more traffic policy
74             instances, submit another C<ListTrafficPolicyInstances> request. For
75             the value of C<trafficpolicyinstancename>, specify the value of
76             C<TrafficPolicyInstanceNameMarker> from the previous response, which is
77             the name of the first traffic policy instance in the next group of
78             traffic policy instances.
79              
80             If the value of C<IsTruncated> in the previous response was C<false>,
81             there are no more traffic policy instances to get.
82              
83              
84              
85             =head2 TrafficPolicyInstanceTypeMarker => Str
86              
87             If the value of C<IsTruncated> in the previous response was C<true>,
88             you have more traffic policy instances. To get more traffic policy
89             instances, submit another C<ListTrafficPolicyInstances> request. For
90             the value of C<trafficpolicyinstancetype>, specify the value of
91             C<TrafficPolicyInstanceTypeMarker> from the previous response, which is
92             the type of the first traffic policy instance in the next group of
93             traffic policy instances.
94              
95             If the value of C<IsTruncated> in the previous response was C<false>,
96             there are no more traffic policy instances to get.
97              
98             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">
99              
100              
101             =head1 SEE ALSO
102              
103             This class forms part of L<Paws>, documenting arguments for method ListTrafficPolicyInstances in L<Paws::Route53>
104              
105             =head1 BUGS and CONTRIBUTIONS
106              
107             The source code is located here: https://github.com/pplu/aws-sdk-perl
108              
109             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
110              
111             =cut
112