File Coverage

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