line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::Reservation; |
3
|
1
|
|
|
1
|
|
289
|
use Moose; |
|
1
|
|
|
1
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
644
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
13
|
|
4
|
|
|
|
|
|
|
has Groups => (is => 'ro', isa => 'ArrayRef[Paws::EC2::GroupIdentifier]', request_name => 'groupSet', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has Instances => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Instance]', request_name => 'instancesSet', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
has OwnerId => (is => 'ro', isa => 'Str', request_name => 'ownerId', traits => ['NameInRequest',]); |
7
|
|
|
|
|
|
|
has RequesterId => (is => 'ro', isa => 'Str', request_name => 'requesterId', traits => ['NameInRequest',]); |
8
|
|
|
|
|
|
|
has ReservationId => (is => 'ro', isa => 'Str', request_name => 'reservationId', traits => ['NameInRequest',]); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::EC2::Reservation |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 Groups => ArrayRef[L<Paws::EC2::GroupIdentifier>] |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
[EC2-Classic only] One or more security groups. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 Instances => ArrayRef[L<Paws::EC2::Instance>] |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
One or more instances. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 OwnerId => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The ID of the AWS account that owns the reservation. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 RequesterId => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The ID of the requester that launched the instances on your behalf (for |
40
|
|
|
|
|
|
|
example, AWS Management Console or Auto Scaling). |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 ReservationId => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The ID of the reservation. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 _request_id => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |
52
|
|
|
|
|
|
|
|