| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::KMS::GetParametersForImportResponse; |
|
3
|
1
|
|
|
1
|
|
596
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
|
|
has ImportToken => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has KeyId => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
has ParametersValidTo => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
has PublicKey => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::KMS::GetParametersForImportResponse |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 ImportToken => Str |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The import token to send in a subsequent ImportKeyMaterial request. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 KeyId => Str |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The identifier of the CMK to use in a subsequent ImportKeyMaterial |
|
28
|
|
|
|
|
|
|
request. This is the same CMK specified in the |
|
29
|
|
|
|
|
|
|
C<GetParametersForImport> request. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 ParametersValidTo => Str |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The time at which the import token and public key are no longer valid. |
|
35
|
|
|
|
|
|
|
After this time, you cannot use them to make an ImportKeyMaterial |
|
36
|
|
|
|
|
|
|
request and you must send another C<GetParametersForImport> request to |
|
37
|
|
|
|
|
|
|
retrieve new ones. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 PublicKey => Str |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The public key to use to encrypt the key material before importing it |
|
43
|
|
|
|
|
|
|
with ImportKeyMaterial. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=cut |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
1; |