File Coverage

blib/lib/Paws/Route53/ListHostedZones.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Route53::ListHostedZones;
3 1     1   367 use Moose;
  1     2   3  
  1         6  
  2         1393  
  2         6  
  2         18  
4             has DelegationSetId => (is => 'ro', isa => 'Str', query_name => 'delegationsetid', traits => ['ParamInQuery']);
5             has Marker => (is => 'ro', isa => 'Str', query_name => 'marker', traits => ['ParamInQuery']);
6             has MaxItems => (is => 'ro', isa => 'Str', query_name => 'maxitems', traits => ['ParamInQuery']);
7              
8 1     1   6084 use MooseX::ClassAttribute;
  1     2   3  
  1         8  
  2         15104  
  2         6  
  2         17  
9              
10             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListHostedZones');
11             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2013-04-01/hostedzone');
12             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Route53::ListHostedZonesResponse');
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::ListHostedZones - Arguments for method ListHostedZones on Paws::Route53
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method ListHostedZones on the
27             Amazon Route 53 service. Use the attributes of this class
28             as arguments to method ListHostedZones.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListHostedZones.
31              
32             As an example:
33              
34             $service_obj->ListHostedZones(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 DelegationSetId => Str
42              
43             If you're using reusable delegation sets and you want to list all of
44             the hosted zones that are associated with a reusable delegation set,
45             specify the ID of that reusable delegation set.
46              
47              
48              
49             =head2 Marker => Str
50              
51             If the value of C<IsTruncated> in the previous response was C<true>,
52             you have more hosted zones. To get more hosted zones, submit another
53             C<ListHostedZones> request.
54              
55             For the value of C<marker>, specify the value of C<NextMarker> from the
56             previous response, which is the ID of the first hosted zone that Amazon
57             Route 53 will return if you submit another request.
58              
59             If the value of C<IsTruncated> in the previous response was C<false>,
60             there are no more hosted zones to get.
61              
62              
63              
64             =head2 MaxItems => Str
65              
66             (Optional) The maximum number of hosted zones that you want Amazon
67             Route 53 to return. If you have more than C<maxitems> hosted zones, the
68             value of C<IsTruncated> in the response is C<true>, and the value of
69             C<NextMarker> is the hosted zone ID of the first hosted zone that
70             Amazon Route 53 will return if you submit another request.
71              
72              
73              
74              
75             =head1 SEE ALSO
76              
77             This class forms part of L<Paws>, documenting arguments for method ListHostedZones in L<Paws::Route53>
78              
79             =head1 BUGS and CONTRIBUTIONS
80              
81             The source code is located here: https://github.com/pplu/aws-sdk-perl
82              
83             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
84              
85             =cut
86