line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Glacier::GetVaultLockOutput; |
3
|
1
|
|
|
1
|
|
978
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
12
|
|
4
|
|
|
|
|
|
|
has CreationDate => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has ExpirationDate => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Policy => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has State => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::Glacier::GetVaultLockOutput |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 CreationDate => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The UTC date and time at which the vault lock was put into the |
24
|
|
|
|
|
|
|
C<InProgress> state. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 ExpirationDate => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The UTC date and time at which the lock ID expires. This value can be |
30
|
|
|
|
|
|
|
C<null> if the vault lock is in a C<Locked> state. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 Policy => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The vault lock policy as a JSON string, which uses "\" as an escape |
36
|
|
|
|
|
|
|
character. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 State => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The state of the vault lock. C<InProgress> or C<Locked>. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 _request_id => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |
48
|
|
|
|
|
|
|
|