File Coverage

blib/lib/Paws/KinesisAnalytics/ReferenceDataSourceUpdate.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::ReferenceDataSourceUpdate;
2 1     1   292 use Moose;
  1         3  
  1         7  
3             has ReferenceId => (is => 'ro', isa => 'Str', required => 1);
4             has ReferenceSchemaUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::SourceSchema');
5             has S3ReferenceDataSourceUpdate => (is => 'ro', isa => 'Paws::KinesisAnalytics::S3ReferenceDataSourceUpdate');
6             has TableNameUpdate => (is => 'ro', isa => 'Str');
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::KinesisAnalytics::ReferenceDataSourceUpdate
14              
15             =head1 USAGE
16              
17             This class represents one of two things:
18              
19             =head3 Arguments in a call to a service
20              
21             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
22             Each attribute should be used as a named argument in the calls that expect this type of object.
23              
24             As an example, if Att1 is expected to be a Paws::KinesisAnalytics::ReferenceDataSourceUpdate object:
25              
26             $service_obj->Method(Att1 => { ReferenceId => $value, ..., TableNameUpdate => $value });
27              
28             =head3 Results returned from an API call
29              
30             Use accessors for each attribute. If Att1 is expected to be an Paws::KinesisAnalytics::ReferenceDataSourceUpdate object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->ReferenceId
34              
35             =head1 DESCRIPTION
36              
37             When you update a reference data source configuration for an
38             application, this object provides all the updated values (such as the
39             source bucket name and object key name), the in-application table name
40             that is created, and updated mapping information that maps the data in
41             the Amazon S3 object to the in-application reference table that is
42             created.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 B<REQUIRED> ReferenceId => Str
48              
49             ID of the reference data source being updated. You can use the
50             DescribeApplication operation to get this value.
51              
52              
53             =head2 ReferenceSchemaUpdate => L<Paws::KinesisAnalytics::SourceSchema>
54              
55            
56              
57              
58             =head2 S3ReferenceDataSourceUpdate => L<Paws::KinesisAnalytics::S3ReferenceDataSourceUpdate>
59              
60             Describes the S3 bucket name, object key name, and IAM role that Amazon
61             Kinesis Analytics can assume to read the Amazon S3 object on your
62             behalf and populate the in-application reference table.
63              
64              
65             =head2 TableNameUpdate => Str
66              
67             In-application table name that is created by this update.
68              
69              
70              
71             =head1 SEE ALSO
72              
73             This class forms part of L<Paws>, describing an object used in L<Paws::KinesisAnalytics>
74              
75             =head1 BUGS and CONTRIBUTIONS
76              
77             The source code is located here: https://github.com/pplu/aws-sdk-perl
78              
79             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
80              
81             =cut
82