File Coverage

blib/lib/Paws/EC2/DescribeReservedInstancesModifications.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::EC2::DescribeReservedInstancesModifications;
3 1     1   547 use Moose;
  1         3  
  1         7  
4             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Filter]', traits => ['NameInRequest'], request_name => 'Filter' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6             has ReservedInstancesModificationIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'ReservedInstancesModificationId' );
7              
8 1     1   6296 use MooseX::ClassAttribute;
  1         4  
  1         9  
9              
10             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeReservedInstancesModifications');
11             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EC2::DescribeReservedInstancesModificationsResult');
12             class_has _result_key => (isa => 'Str', is => 'ro');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::EC2::DescribeReservedInstancesModifications - Arguments for method DescribeReservedInstancesModifications on Paws::EC2
20              
21             =head1 DESCRIPTION
22              
23             This class represents the parameters used for calling the method DescribeReservedInstancesModifications on the
24             Amazon Elastic Compute Cloud service. Use the attributes of this class
25             as arguments to method DescribeReservedInstancesModifications.
26              
27             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeReservedInstancesModifications.
28              
29             As an example:
30              
31             $service_obj->DescribeReservedInstancesModifications(Att1 => $value1, Att2 => $value2, ...);
32              
33             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
34              
35             =head1 ATTRIBUTES
36              
37              
38             =head2 Filters => ArrayRef[L<Paws::EC2::Filter>]
39              
40             One or more filters.
41              
42             =over
43              
44             =item *
45              
46             C<client-token> - The idempotency token for the modification request.
47              
48             =item *
49              
50             C<create-date> - The time when the modification request was created.
51              
52             =item *
53              
54             C<effective-date> - The time when the modification becomes effective.
55              
56             =item *
57              
58             C<modification-result.reserved-instances-id> - The ID for the Reserved
59             Instances created as part of the modification request. This ID is only
60             available when the status of the modification is C<fulfilled>.
61              
62             =item *
63              
64             C<modification-result.target-configuration.availability-zone> - The
65             Availability Zone for the new Reserved Instances.
66              
67             =item *
68              
69             C<modification-result.target-configuration.instance-count > - The
70             number of new Reserved Instances.
71              
72             =item *
73              
74             C<modification-result.target-configuration.instance-type> - The
75             instance type of the new Reserved Instances.
76              
77             =item *
78              
79             C<modification-result.target-configuration.platform> - The network
80             platform of the new Reserved Instances (C<EC2-Classic> | C<EC2-VPC>).
81              
82             =item *
83              
84             C<reserved-instances-id> - The ID of the Reserved Instances modified.
85              
86             =item *
87              
88             C<reserved-instances-modification-id> - The ID of the modification
89             request.
90              
91             =item *
92              
93             C<status> - The status of the Reserved Instances modification request
94             (C<processing> | C<fulfilled> | C<failed>).
95              
96             =item *
97              
98             C<status-message> - The reason for the status.
99              
100             =item *
101              
102             C<update-date> - The time when the modification request was last
103             updated.
104              
105             =back
106              
107              
108              
109              
110             =head2 NextToken => Str
111              
112             The token to retrieve the next page of results.
113              
114              
115              
116             =head2 ReservedInstancesModificationIds => ArrayRef[Str|Undef]
117              
118             IDs for the submitted modification request.
119              
120              
121              
122              
123             =head1 SEE ALSO
124              
125             This class forms part of L<Paws>, documenting arguments for method DescribeReservedInstancesModifications in L<Paws::EC2>
126              
127             =head1 BUGS and CONTRIBUTIONS
128              
129             The source code is located here: https://github.com/pplu/aws-sdk-perl
130              
131             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
132              
133             =cut
134