File Coverage

blib/lib/Paws/Kinesis/EnhancedMetrics.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::Kinesis::EnhancedMetrics;
2 1     1   482 use Moose;
  1         3  
  1         8  
3             has ShardLevelMetrics => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
4             1;
5              
6             ### main pod documentation begin ###
7              
8             =head1 NAME
9              
10             Paws::Kinesis::EnhancedMetrics
11              
12             =head1 USAGE
13              
14             This class represents one of two things:
15              
16             =head3 Arguments in a call to a service
17              
18             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
19             Each attribute should be used as a named argument in the calls that expect this type of object.
20              
21             As an example, if Att1 is expected to be a Paws::Kinesis::EnhancedMetrics object:
22              
23             $service_obj->Method(Att1 => { ShardLevelMetrics => $value, ..., ShardLevelMetrics => $value });
24              
25             =head3 Results returned from an API call
26              
27             Use accessors for each attribute. If Att1 is expected to be an Paws::Kinesis::EnhancedMetrics object:
28              
29             $result = $service_obj->Method(...);
30             $result->Att1->ShardLevelMetrics
31              
32             =head1 DESCRIPTION
33              
34             Represents enhanced metrics types.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 ShardLevelMetrics => ArrayRef[Str|Undef]
40              
41             List of shard-level metrics.
42              
43             The following are the valid shard-level metrics. The value "C<ALL>"
44             enhances every metric.
45              
46             =over
47              
48             =item *
49              
50             C<IncomingBytes>
51              
52             =item *
53              
54             C<IncomingRecords>
55              
56             =item *
57              
58             C<OutgoingBytes>
59              
60             =item *
61              
62             C<OutgoingRecords>
63              
64             =item *
65              
66             C<WriteProvisionedThroughputExceeded>
67              
68             =item *
69              
70             C<ReadProvisionedThroughputExceeded>
71              
72             =item *
73              
74             C<IteratorAgeMilliseconds>
75              
76             =item *
77              
78             C<ALL>
79              
80             =back
81              
82             For more information, see Monitoring the Amazon Kinesis Streams Service
83             with Amazon CloudWatch in the I<Amazon Kinesis Streams Developer
84             Guide>.
85              
86              
87              
88             =head1 SEE ALSO
89              
90             This class forms part of L<Paws>, describing an object used in L<Paws::Kinesis>
91              
92             =head1 BUGS and CONTRIBUTIONS
93              
94             The source code is located here: https://github.com/pplu/aws-sdk-perl
95              
96             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
97              
98             =cut
99