line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::EC2::ReservedInstancesModification; |
2
|
1
|
|
|
1
|
|
679
|
use Moose; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
15
|
|
3
|
|
|
|
|
|
|
has ClientToken => (is => 'ro', isa => 'Str', request_name => 'clientToken', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has CreateDate => (is => 'ro', isa => 'Str', request_name => 'createDate', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has EffectiveDate => (is => 'ro', isa => 'Str', request_name => 'effectiveDate', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
has ModificationResults => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ReservedInstancesModificationResult]', request_name => 'modificationResultSet', traits => ['NameInRequest']); |
7
|
|
|
|
|
|
|
has ReservedInstancesIds => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ReservedInstancesId]', request_name => 'reservedInstancesSet', traits => ['NameInRequest']); |
8
|
|
|
|
|
|
|
has ReservedInstancesModificationId => (is => 'ro', isa => 'Str', request_name => 'reservedInstancesModificationId', traits => ['NameInRequest']); |
9
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']); |
10
|
|
|
|
|
|
|
has StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest']); |
11
|
|
|
|
|
|
|
has UpdateDate => (is => 'ro', isa => 'Str', request_name => 'updateDate', traits => ['NameInRequest']); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::EC2::ReservedInstancesModification |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 USAGE |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This class represents one of two things: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
27
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::EC2::ReservedInstancesModification object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { ClientToken => $value, ..., UpdateDate => $value }); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head3 Results returned from an API call |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::ReservedInstancesModification object: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
38
|
|
|
|
|
|
|
$result->Att1->ClientToken |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This class has no description |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 ClientToken => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
A unique, case-sensitive key supplied by the client to ensure that the |
50
|
|
|
|
|
|
|
request is idempotent. For more information, see Ensuring Idempotency. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 CreateDate => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The time when the modification request was created. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 EffectiveDate => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The time for the modification to become effective. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 ModificationResults => ArrayRef[L<Paws::EC2::ReservedInstancesModificationResult>] |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Contains target configurations along with their corresponding new |
66
|
|
|
|
|
|
|
Reserved Instance IDs. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 ReservedInstancesIds => ArrayRef[L<Paws::EC2::ReservedInstancesId>] |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The IDs of one or more Reserved Instances. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head2 ReservedInstancesModificationId => Str |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
A unique ID for the Reserved Instance modification. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 Status => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The status of the Reserved Instances modification request. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 StatusMessage => Str |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The reason for the status. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head2 UpdateDate => Str |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
The time when the modification request was last updated. |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=head1 SEE ALSO |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::EC2> |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=cut |