line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::VolumeAttachment; |
3
|
1
|
|
|
1
|
|
550
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
558
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has AttachTime => (is => 'ro', isa => 'Str', request_name => 'attachTime', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has DeleteOnTermination => (is => 'ro', isa => 'Bool', request_name => 'deleteOnTermination', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
has Device => (is => 'ro', isa => 'Str', request_name => 'device', traits => ['NameInRequest',]); |
7
|
|
|
|
|
|
|
has InstanceId => (is => 'ro', isa => 'Str', request_name => 'instanceId', traits => ['NameInRequest',]); |
8
|
|
|
|
|
|
|
has State => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest',]); |
9
|
|
|
|
|
|
|
has VolumeId => (is => 'ro', isa => 'Str', request_name => 'volumeId', traits => ['NameInRequest',]); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::EC2::VolumeAttachment |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 AttachTime => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
The time stamp when the attachment initiated. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 DeleteOnTermination => Bool |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Indicates whether the EBS volume is deleted on instance termination. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 Device => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The device name. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 InstanceId => Str |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
The ID of the instance. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 State => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The attachment state of the volume. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Valid values are: C<"attaching">, C<"attached">, C<"detaching">, C<"detached"> |
48
|
|
|
|
|
|
|
=head2 VolumeId => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The ID of the volume. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 _request_id => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |
57
|
|
|
|
|
|
|
|