line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Kinesis::EnhancedMonitoringOutput; |
3
|
1
|
|
|
1
|
|
312
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has CurrentShardLevelMetrics => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
5
|
|
|
|
|
|
|
has DesiredShardLevelMetrics => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
6
|
|
|
|
|
|
|
has StreamName => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Kinesis::EnhancedMonitoringOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 CurrentShardLevelMetrics => ArrayRef[Str|Undef] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Represents the current state of the metrics that are in the enhanced |
22
|
|
|
|
|
|
|
state before the operation. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 DesiredShardLevelMetrics => ArrayRef[Str|Undef] |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Represents the list of all the metrics that would be in the enhanced |
28
|
|
|
|
|
|
|
state after the operation. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 StreamName => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The name of the Amazon Kinesis stream. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
1; |