File Coverage

blib/lib/Paws/Athena/ColumnInfo.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::Athena::ColumnInfo;
2 1     1   591 use Moose;
  1         4  
  1         9  
3             has CaseSensitive => (is => 'ro', isa => 'Bool');
4             has CatalogName => (is => 'ro', isa => 'Str');
5             has Label => (is => 'ro', isa => 'Str');
6             has Name => (is => 'ro', isa => 'Str', required => 1);
7             has Nullable => (is => 'ro', isa => 'Str');
8             has Precision => (is => 'ro', isa => 'Int');
9             has Scale => (is => 'ro', isa => 'Int');
10             has SchemaName => (is => 'ro', isa => 'Str');
11             has TableName => (is => 'ro', isa => 'Str');
12             has Type => (is => 'ro', isa => 'Str', required => 1);
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::Athena::ColumnInfo
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::Athena::ColumnInfo object:
31              
32             $service_obj->Method(Att1 => { CaseSensitive => $value, ..., Type => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::Athena::ColumnInfo object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->CaseSensitive
40              
41             =head1 DESCRIPTION
42              
43             Information about the columns in a query execution result.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 CaseSensitive => Bool
49              
50             Indicates whether values in the column are case-sensitive.
51              
52              
53             =head2 CatalogName => Str
54              
55             The catalog to which the query results belong.
56              
57              
58             =head2 Label => Str
59              
60             A column label.
61              
62              
63             =head2 B<REQUIRED> Name => Str
64              
65             The name of the column.
66              
67              
68             =head2 Nullable => Str
69              
70             Indicates the column's nullable status.
71              
72              
73             =head2 Precision => Int
74              
75             For C<DECIMAL> data types, specifies the total number of digits, up to
76             38. For performance reasons, we recommend up to 18 digits.
77              
78              
79             =head2 Scale => Int
80              
81             For C<DECIMAL> data types, specifies the total number of digits in the
82             fractional part of the value. Defaults to 0.
83              
84              
85             =head2 SchemaName => Str
86              
87             The schema name (database name) to which the query results belong.
88              
89              
90             =head2 TableName => Str
91              
92             The table name for the query results.
93              
94              
95             =head2 B<REQUIRED> Type => Str
96              
97             The data type of the column.
98              
99              
100              
101             =head1 SEE ALSO
102              
103             This class forms part of L<Paws>, describing an object used in L<Paws::Athena>
104              
105             =head1 BUGS and CONTRIBUTIONS
106              
107             The source code is located here: https://github.com/pplu/aws-sdk-perl
108              
109             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
110              
111             =cut
112