line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudWatchEvents::PutEventsResponse; |
3
|
1
|
|
|
1
|
|
401
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has Entries => (is => 'ro', isa => 'ArrayRef[Paws::CloudWatchEvents::PutEventsResultEntry]'); |
5
|
|
|
|
|
|
|
has FailedEntryCount => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::CloudWatchEvents::PutEventsResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Entries => ArrayRef[L<Paws::CloudWatchEvents::PutEventsResultEntry>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The successfully and unsuccessfully ingested events results. If the |
21
|
|
|
|
|
|
|
ingestion was successful, the entry has the event ID in it. Otherwise, |
22
|
|
|
|
|
|
|
you can use the error code and error message to identify the problem |
23
|
|
|
|
|
|
|
with the entry. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 FailedEntryCount => Int |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The number of failed entries. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |