| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Kinesis::PutRecordOutput; |
|
3
|
1
|
|
|
1
|
|
576
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
|
|
has EncryptionType => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has SequenceNumber => (is => 'ro', isa => 'Str', required => 1); |
|
6
|
|
|
|
|
|
|
has ShardId => (is => 'ro', isa => 'Str', required => 1); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Kinesis::PutRecordOutput |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 EncryptionType => Str |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The encryption type to use on the record. This parameter can be one of |
|
22
|
|
|
|
|
|
|
the following values: |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=over |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=item * |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
C<NONE>: Do not encrypt the records in the stream. |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=item * |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
C<KMS>: Use server-side encryption on the records in the stream using a |
|
33
|
|
|
|
|
|
|
customer-managed KMS key. |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=back |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Valid values are: C<"NONE">, C<"KMS"> |
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> SequenceNumber => Str |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The sequence number identifier that was assigned to the put data |
|
42
|
|
|
|
|
|
|
record. The sequence number for the record is unique across all records |
|
43
|
|
|
|
|
|
|
in the stream. A sequence number is the identifier associated with |
|
44
|
|
|
|
|
|
|
every record put into the stream. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 B<REQUIRED> ShardId => Str |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
The shard ID of the shard where the data record was placed. |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
1; |