File Coverage

blib/lib/Paws/KinesisAnalytics/InputUpdate.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::KinesisAnalytics::InputUpdate;
2 1     1   639 use Moose;
  1         3  
  1         14  
3             has InputId => (is => 'ro', isa => 'Str', required => 1);
4             has InputParallelismUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::InputParallelismUpdate');
5             has InputProcessingConfigurationUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::InputProcessingConfigurationUpdate');
6             has InputSchemaUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::InputSchemaUpdate');
7             has KinesisFirehoseInputUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::KinesisFirehoseInputUpdate');
8             has KinesisStreamsInputUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::KinesisStreamsInputUpdate');
9             has NamePrefixUpdate => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::KinesisAnalytics::InputUpdate
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::KinesisAnalytics::InputUpdate object:
28              
29             $service_obj->Method(Att1 => { InputId => $value, ..., NamePrefixUpdate => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::KinesisAnalytics::InputUpdate object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->InputId
37              
38             =head1 DESCRIPTION
39              
40             Describes updates to a specific input configuration (identified by the
41             C<InputId> of an application).
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 B<REQUIRED> InputId => Str
47              
48             Input ID of the application input to be updated.
49              
50              
51             =head2 InputParallelismUpdate => L<Paws::KinesisAnalytics::InputParallelismUpdate>
52              
53             Describes the parallelism updates (the number in-application streams
54             Amazon Kinesis Analytics creates for the specific streaming source).
55              
56              
57             =head2 InputProcessingConfigurationUpdate => L<Paws::KinesisAnalytics::InputProcessingConfigurationUpdate>
58              
59             Describes updates for an input processing configuration.
60              
61              
62             =head2 InputSchemaUpdate => L<Paws::KinesisAnalytics::InputSchemaUpdate>
63              
64             Describes the data format on the streaming source, and how record
65             elements on the streaming source map to columns of the in-application
66             stream that is created.
67              
68              
69             =head2 KinesisFirehoseInputUpdate => L<Paws::KinesisAnalytics::KinesisFirehoseInputUpdate>
70              
71             If an Amazon Kinesis Firehose delivery stream is the streaming source
72             to be updated, provides an updated stream Amazon Resource Name (ARN)
73             and IAM role ARN.
74              
75              
76             =head2 KinesisStreamsInputUpdate => L<Paws::KinesisAnalytics::KinesisStreamsInputUpdate>
77              
78             If a Amazon Kinesis stream is the streaming source to be updated,
79             provides an updated stream ARN and IAM role ARN.
80              
81              
82             =head2 NamePrefixUpdate => Str
83              
84             Name prefix for in-application streams that Amazon Kinesis Analytics
85             creates for the specific streaming source.
86              
87              
88              
89             =head1 SEE ALSO
90              
91             This class forms part of L<Paws>, describing an object used in L<Paws::KinesisAnalytics>
92              
93             =head1 BUGS and CONTRIBUTIONS
94              
95             The source code is located here: https://github.com/pplu/aws-sdk-perl
96              
97             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
98              
99             =cut
100