line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::KinesisAnalytics::DiscoverInputSchemaResponse; |
3
|
1
|
|
|
1
|
|
616
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has InputSchema => (is => 'ro', isa => 'Paws::KinesisAnalytics::SourceSchema'); |
5
|
|
|
|
|
|
|
has ParsedInputRecords => (is => 'ro', isa => 'ArrayRef[ArrayRef[Str|Undef]]'); |
6
|
|
|
|
|
|
|
has RawInputRecords => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::KinesisAnalytics::DiscoverInputSchemaResponse |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 InputSchema => L<Paws::KinesisAnalytics::SourceSchema> |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Schema inferred from the streaming source. It identifies the format of |
22
|
|
|
|
|
|
|
the data in the streaming source and how each data element maps to |
23
|
|
|
|
|
|
|
corresponding columns in the in-application stream that you can create. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 ParsedInputRecords => ArrayRef[ArrayRef[Str|Undef]] |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
An array of elements, where each element corresponds to a row in a |
29
|
|
|
|
|
|
|
stream record (a stream record can have more than one row). |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 RawInputRecords => ArrayRef[Str|Undef] |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Raw stream data that was sampled to infer the schema. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |