File Coverage

blib/lib/Paws/KinesisAnalytics/ReferenceDataSourceDescription.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::ReferenceDataSourceDescription;
2 1     1   709 use Moose;
  1         2  
  1         9  
3             has ReferenceId => (is => 'ro', isa => 'Str', required => 1);
4             has ReferenceSchema => (is => 'ro', isa => 'Paws::KinesisAnalytics::SourceSchema');
5             has S3ReferenceDataSourceDescription => (is => 'ro', isa => 'Paws::KinesisAnalytics::S3ReferenceDataSourceDescription', required => 1);
6             has TableName => (is => 'ro', isa => 'Str', required => 1);
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::KinesisAnalytics::ReferenceDataSourceDescription
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::ReferenceDataSourceDescription object:
25              
26             $service_obj->Method(Att1 => { ReferenceId => $value, ..., TableName => $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::ReferenceDataSourceDescription object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->ReferenceId
34              
35             =head1 DESCRIPTION
36              
37             Describes the reference data source configured for an application.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> ReferenceId => Str
43              
44             ID of the reference data source. This is the ID that Amazon Kinesis
45             Analytics assigns when you add the reference data source to your
46             application using the AddApplicationReferenceDataSource operation.
47              
48              
49             =head2 ReferenceSchema => L<Paws::KinesisAnalytics::SourceSchema>
50              
51            
52              
53              
54             =head2 B<REQUIRED> S3ReferenceDataSourceDescription => L<Paws::KinesisAnalytics::S3ReferenceDataSourceDescription>
55              
56             Provides the S3 bucket name, the object key name that contains the
57             reference data. It also provides the Amazon Resource Name (ARN) of the
58             IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3
59             object and populate the in-application reference table.
60              
61              
62             =head2 B<REQUIRED> TableName => Str
63              
64             The in-application table name created by the specific reference data
65             source configuration.
66              
67              
68              
69             =head1 SEE ALSO
70              
71             This class forms part of L<Paws>, describing an object used in L<Paws::KinesisAnalytics>
72              
73             =head1 BUGS and CONTRIBUTIONS
74              
75             The source code is located here: https://github.com/pplu/aws-sdk-perl
76              
77             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
78              
79             =cut
80