1VM::EC2::ReservedInstanUcsee:r:LCiosnttirnigb(u3t)ed PerVlM:D:oEcCu2m:e:nRteasteirovnedInstance::Listing(3)
2
3
4
6 VM::EC2::ReservedInstance::Listing - Object describing an Amazon EC2
7 reserved instance listing
8
10 use VM::EC2;
11
12 $ec2 = VM::EC2->new(...);
13 @listings = $ec2->describe_reserved_instances_listings();
14 for my $l (@listings) {
15 print $l->reservedInstancesId,"\n";
16 print $l->createDate,"\n";
17 print $l->status,"\n";
18 }
19
21 This object represents an Amazon EC2 reserved instance listing, as
22 returned by VM::EC2->describe_reserved_instances_listings().
23
25 These object methods are supported:
26
27 reservedInstancesListingId -- ID of this listing
28
29 reservedInstancesId -- The ID of the Reserved Instance
30
31 createDate -- The time the listing was created
32
33 updateDate -- The last modified timestamp of the listing
34
35 status -- The status of the Reserved Instance listing
36 Valid values:
37 active | pending | cancelled | closed
38
39 statusMessage -- The reason for the current status of the listing
40 The response can be blank.
41
42 instanceCounts -- Number of instances in this state
43
44 priceSchedules -- Price of the Reserved Instance listing
45
46 clientToken -- The idempotency token you provided when you
47 created the listing
48
50 When used in a string context, this object will interpolate the
51 reservedInstancesListingId.
52
54 VM::EC2 VM::EC2::Generic
55
57 Lance Kinley <lkinley@loyaltymethods.com<gt>.
58
59 Copyright (c) 2014 Loyalty Methods, Inc.
60
61 This package and its accompanying libraries is free software; you can
62 redistribute it and/or modify it under the terms of the GPL (either
63 version 1, or at your option, any later version) or the Artistic
64 License 2.0. Refer to LICENSE for the full license text. In addition,
65 please see DISCLAIMER.txt for disclaimers of warranty.
66
67
68
69perl v5.32.1 2021-01-V2M7::EC2::ReservedInstance::Listing(3)