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