line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Route53::ListVPCAssociationAuthorizationsResponse; |
3
|
1
|
|
|
1
|
|
320
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has HostedZoneId => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has VPCs => (is => 'ro', isa => 'ArrayRef[Paws::Route53::VPC]', required => 1); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::Route53::ListVPCAssociationAuthorizationsResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 B<REQUIRED> HostedZoneId => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The ID of the hosted zone that you can associate the listed VPCs with. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 NextToken => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
When the response includes a C<NextToken> element, there are more VPCs |
29
|
|
|
|
|
|
|
that can be associated with the specified hosted zone. To get the next |
30
|
|
|
|
|
|
|
page of VPCs, submit another C<ListVPCAssociationAuthorizations> |
31
|
|
|
|
|
|
|
request, and include the value of the C<NextToken> element from the |
32
|
|
|
|
|
|
|
response in the C<nexttoken> request parameter. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 B<REQUIRED> VPCs => ArrayRef[L<Paws::Route53::VPC>] |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The list of VPCs that are authorized to be associated with the |
39
|
|
|
|
|
|
|
specified hosted zone. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |
45
|
|
|
|
|
|
|
|