File Coverage

blib/lib/Paws/Route53/GetHostedZoneResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Route53::GetHostedZoneResponse;
3 1     1   538 use Moose;
  1         2  
  1         8  
4             has DelegationSet => (is => 'ro', isa => 'Paws::Route53::DelegationSet');
5             has HostedZone => (is => 'ro', isa => 'Paws::Route53::HostedZone', required => 1);
6             has VPCs => (is => 'ro', isa => 'ArrayRef[Paws::Route53::VPC]');
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::GetHostedZoneResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 DelegationSet => L<Paws::Route53::DelegationSet>
21              
22             A complex type that lists the Amazon Route 53 name servers for the
23             specified hosted zone.
24              
25              
26              
27             =head2 B<REQUIRED> HostedZone => L<Paws::Route53::HostedZone>
28              
29             A complex type that contains general information about the specified
30             hosted zone.
31              
32              
33              
34             =head2 VPCs => ArrayRef[L<Paws::Route53::VPC>]
35              
36             A complex type that contains information about the VPCs that are
37             associated with the specified hosted zone.
38              
39              
40              
41              
42             =cut
43