line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Route53::ChangeInfo; |
2
|
1
|
|
|
1
|
|
304
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has Comment => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has SubmittedAt => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::Route53::ChangeInfo |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 USAGE |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class represents one of two things: |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
22
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Route53::ChangeInfo object: |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Comment => $value, ..., SubmittedAt => $value }); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head3 Results returned from an API call |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Route53::ChangeInfo object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
33
|
|
|
|
|
|
|
$result->Att1->Comment |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
A complex type that describes change information about changes made to |
38
|
|
|
|
|
|
|
your hosted zone. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 Comment => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
A complex type that describes change information about changes made to |
46
|
|
|
|
|
|
|
your hosted zone. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This element contains an ID that you use when performing a GetChange |
49
|
|
|
|
|
|
|
action to get detailed information about the change. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 B<REQUIRED> Id => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The ID of the request. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 B<REQUIRED> Status => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The current state of the request. C<PENDING> indicates that this |
60
|
|
|
|
|
|
|
request has not yet been applied to all Amazon Route 53 DNS servers. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 B<REQUIRED> SubmittedAt => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The date and time that the change request was submitted in ISO 8601 |
66
|
|
|
|
|
|
|
format and Coordinated Universal Time (UTC). For example, the value |
67
|
|
|
|
|
|
|
C<2017-03-27T17:48:16.751Z> represents March 27, 2017 at 17:48:16.751 |
68
|
|
|
|
|
|
|
UTC. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 SEE ALSO |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Route53> |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=cut |
83
|
|
|
|
|
|
|
|