File Coverage

blib/lib/Paws/KinesisAnalytics/DiscoverInputSchema.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::KinesisAnalytics::DiscoverInputSchema;
3 1     1   393 use Moose;
  1         3  
  1         9  
4             has InputProcessingConfiguration => (is => 'ro', isa => 'Paws::KinesisAnalytics::InputProcessingConfiguration');
5             has InputStartingPositionConfiguration => (is => 'ro', isa => 'Paws::KinesisAnalytics::InputStartingPositionConfiguration');
6             has ResourceARN => (is => 'ro', isa => 'Str');
7             has RoleARN => (is => 'ro', isa => 'Str');
8             has S3Configuration => (is => 'ro', isa => 'Paws::KinesisAnalytics::S3Configuration');
9              
10 1     1   5877 use MooseX::ClassAttribute;
  1         2  
  1         9  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DiscoverInputSchema');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::KinesisAnalytics::DiscoverInputSchemaResponse');
14             class_has _result_key => (isa => 'Str', is => 'ro');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::KinesisAnalytics::DiscoverInputSchema - Arguments for method DiscoverInputSchema on Paws::KinesisAnalytics
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method DiscoverInputSchema on the
26             Amazon Kinesis Analytics service. Use the attributes of this class
27             as arguments to method DiscoverInputSchema.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DiscoverInputSchema.
30              
31             As an example:
32              
33             $service_obj->DiscoverInputSchema(Att1 => $value1, Att2 => $value2, ...);
34              
35             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
36              
37             =head1 ATTRIBUTES
38              
39              
40             =head2 InputProcessingConfiguration => L<Paws::KinesisAnalytics::InputProcessingConfiguration>
41              
42             The InputProcessingConfiguration to use to preprocess the records
43             before discovering the schema of the records.
44              
45              
46              
47             =head2 InputStartingPositionConfiguration => L<Paws::KinesisAnalytics::InputStartingPositionConfiguration>
48              
49             Point at which you want Amazon Kinesis Analytics to start reading
50             records from the specified streaming source discovery purposes.
51              
52              
53              
54             =head2 ResourceARN => Str
55              
56             Amazon Resource Name (ARN) of the streaming source.
57              
58              
59              
60             =head2 RoleARN => Str
61              
62             ARN of the IAM role that Amazon Kinesis Analytics can assume to access
63             the stream on your behalf.
64              
65              
66              
67             =head2 S3Configuration => L<Paws::KinesisAnalytics::S3Configuration>
68              
69              
70              
71              
72              
73              
74             =head1 SEE ALSO
75              
76             This class forms part of L<Paws>, documenting arguments for method DiscoverInputSchema in L<Paws::KinesisAnalytics>
77              
78             =head1 BUGS and CONTRIBUTIONS
79              
80             The source code is located here: https://github.com/pplu/aws-sdk-perl
81              
82             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83              
84             =cut
85