File Coverage

blib/lib/Paws/Route53/CreateHostedZoneResponse.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::CreateHostedZoneResponse;
3 1     1   572 use Moose;
  1         2  
  1         34  
4             has ChangeInfo => (is => 'ro', isa => 'Paws::Route53::ChangeInfo', required => 1);
5             has DelegationSet => (is => 'ro', isa => 'Paws::Route53::DelegationSet', required => 1);
6             has HostedZone => (is => 'ro', isa => 'Paws::Route53::HostedZone', required => 1);
7             has Location => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Location', required => 1);
8             has VPC => (is => 'ro', isa => 'Paws::Route53::VPC');
9              
10             has _request_id => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::Route53::CreateHostedZoneResponse
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 B<REQUIRED> ChangeInfo => L<Paws::Route53::ChangeInfo>
23              
24             A complex type that contains information about the C<CreateHostedZone>
25             request.
26              
27              
28              
29             =head2 B<REQUIRED> DelegationSet => L<Paws::Route53::DelegationSet>
30              
31             A complex type that describes the name servers for this hosted zone.
32              
33              
34              
35             =head2 B<REQUIRED> HostedZone => L<Paws::Route53::HostedZone>
36              
37             A complex type that contains general information about the hosted zone.
38              
39              
40              
41             =head2 B<REQUIRED> Location => Str
42              
43             The unique URL representing the new hosted zone.
44              
45              
46              
47             =head2 VPC => L<Paws::Route53::VPC>
48              
49             A complex type that contains information about an Amazon VPC that you
50             associated with this hosted zone.
51              
52              
53              
54              
55             =cut
56