line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListVPCAssociationAuthorizations; |
3
|
1
|
|
|
1
|
|
291
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has HostedZoneId => (is => 'ro', isa => 'Str', uri_name => 'Id', traits => ['ParamInURI'], required => 1); |
5
|
|
|
|
|
|
|
has MaxResults => (is => 'ro', isa => 'Str', query_name => 'maxresults', traits => ['ParamInQuery']); |
6
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str', query_name => 'nexttoken', traits => ['ParamInQuery']); |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
5362
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListVPCAssociationAuthorizations'); |
11
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2013-04-01/hostedzone/{Id}/authorizevpcassociation'); |
12
|
|
|
|
|
|
|
class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Route53::ListVPCAssociationAuthorizationsResponse'); |
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::ListVPCAssociationAuthorizations - Arguments for method ListVPCAssociationAuthorizations on Paws::Route53 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DESCRIPTION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ListVPCAssociationAuthorizations on the |
27
|
|
|
|
|
|
|
Amazon Route 53 service. Use the attributes of this class |
28
|
|
|
|
|
|
|
as arguments to method ListVPCAssociationAuthorizations. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListVPCAssociationAuthorizations. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
As an example: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$service_obj->ListVPCAssociationAuthorizations(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 B<REQUIRED> HostedZoneId => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
The ID of the hosted zone for which you want a list of VPCs that can be |
44
|
|
|
|
|
|
|
associated with the hosted zone. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 MaxResults => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
I<Optional>: An integer that specifies the maximum number of VPCs that |
51
|
|
|
|
|
|
|
you want Amazon Route 53 to return. If you don't specify a value for |
52
|
|
|
|
|
|
|
C<MaxResults>, Amazon Route 53 returns up to 50 VPCs per page. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 NextToken => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
I<Optional>: If a response includes a C<NextToken> element, there are |
59
|
|
|
|
|
|
|
more VPCs that can be associated with the specified hosted zone. To get |
60
|
|
|
|
|
|
|
the next page of results, submit another request, and include the value |
61
|
|
|
|
|
|
|
of C<NextToken> from the response in the C<nexttoken> parameter in |
62
|
|
|
|
|
|
|
another C<ListVPCAssociationAuthorizations> request. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head1 SEE ALSO |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ListVPCAssociationAuthorizations in L<Paws::Route53> |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=cut |
78
|
|
|
|
|
|
|
|