line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Route53::HostedZone; |
2
|
1
|
|
|
1
|
|
306
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
384
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
3
|
|
|
|
|
|
|
has CallerReference => (is => 'ro', isa => 'Str', required => 1); |
4
|
|
|
|
|
|
|
has Config => (is => 'ro', isa => 'Paws::Route53::HostedZoneConfig'); |
5
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has ResourceRecordSetCount => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Route53::HostedZone |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 USAGE |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This class represents one of two things: |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
23
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Route53::HostedZone object: |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { CallerReference => $value, ..., ResourceRecordSetCount => $value }); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head3 Results returned from an API call |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Route53::HostedZone object: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
34
|
|
|
|
|
|
|
$result->Att1->CallerReference |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
A complex type that contains general information about the hosted zone. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 B<REQUIRED> CallerReference => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The value that you specified for C<CallerReference> when you created |
46
|
|
|
|
|
|
|
the hosted zone. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 Config => L<Paws::Route53::HostedZoneConfig> |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
A complex type that includes the C<Comment> and C<PrivateZone> |
52
|
|
|
|
|
|
|
elements. If you omitted the C<HostedZoneConfig> and C<Comment> |
53
|
|
|
|
|
|
|
elements from the request, the C<Config> and C<Comment> elements don't |
54
|
|
|
|
|
|
|
appear in the response. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 B<REQUIRED> Id => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The ID that Amazon Route 53 assigned to the hosted zone when you |
60
|
|
|
|
|
|
|
created it. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 B<REQUIRED> Name => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The name of the domain. For public hosted zones, this is the name that |
66
|
|
|
|
|
|
|
you have registered with your DNS registrar. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
For information about how to specify characters other than C<a-z>, |
69
|
|
|
|
|
|
|
C<0-9>, and C<-> (hyphen) and how to specify internationalized domain |
70
|
|
|
|
|
|
|
names, see CreateHostedZone. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 ResourceRecordSetCount => Int |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The number of resource record sets in the hosted zone. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 SEE ALSO |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Route53> |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=cut |
90
|
|
|
|
|
|
|
|