File Coverage

blib/lib/Paws/Glue/TableInput.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::Glue::TableInput;
2 1     1   310 use Moose;
  1         3  
  1         5  
3             has Description => (is => 'ro', isa => 'Str');
4             has LastAccessTime => (is => 'ro', isa => 'Str');
5             has LastAnalyzedTime => (is => 'ro', isa => 'Str');
6             has Name => (is => 'ro', isa => 'Str', required => 1);
7             has Owner => (is => 'ro', isa => 'Str');
8             has Parameters => (is => 'ro', isa => 'Paws::Glue::ParametersMap');
9             has PartitionKeys => (is => 'ro', isa => 'ArrayRef[Paws::Glue::Column]');
10             has Retention => (is => 'ro', isa => 'Int');
11             has StorageDescriptor => (is => 'ro', isa => 'Paws::Glue::StorageDescriptor');
12             has TableType => (is => 'ro', isa => 'Str');
13             has ViewExpandedText => (is => 'ro', isa => 'Str');
14             has ViewOriginalText => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::Glue::TableInput
22              
23             =head1 USAGE
24              
25             This class represents one of two things:
26              
27             =head3 Arguments in a call to a service
28              
29             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
30             Each attribute should be used as a named argument in the calls that expect this type of object.
31              
32             As an example, if Att1 is expected to be a Paws::Glue::TableInput object:
33              
34             $service_obj->Method(Att1 => { Description => $value, ..., ViewOriginalText => $value });
35              
36             =head3 Results returned from an API call
37              
38             Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::TableInput object:
39              
40             $result = $service_obj->Method(...);
41             $result->Att1->Description
42              
43             =head1 DESCRIPTION
44              
45             Structure used to create or update the table.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 Description => Str
51              
52             Description of the table.
53              
54              
55             =head2 LastAccessTime => Str
56              
57             Last time the table was accessed.
58              
59              
60             =head2 LastAnalyzedTime => Str
61              
62             Last time column statistics were computed for this table.
63              
64              
65             =head2 B<REQUIRED> Name => Str
66              
67             Name of the table.
68              
69              
70             =head2 Owner => Str
71              
72             Owner of the table.
73              
74              
75             =head2 Parameters => L<Paws::Glue::ParametersMap>
76              
77             Properties associated with this table, as a list of key-value pairs.
78              
79              
80             =head2 PartitionKeys => ArrayRef[L<Paws::Glue::Column>]
81              
82             A list of columns by which the table is partitioned. Only primitive
83             types are supported as partition keys.
84              
85              
86             =head2 Retention => Int
87              
88             Retention time for this table.
89              
90              
91             =head2 StorageDescriptor => L<Paws::Glue::StorageDescriptor>
92              
93             A storage descriptor containing information about the physical storage
94             of this table.
95              
96              
97             =head2 TableType => Str
98              
99             The type of this table (C<EXTERNAL_TABLE>, C<VIRTUAL_VIEW>, etc.).
100              
101              
102             =head2 ViewExpandedText => Str
103              
104             If the table is a view, the expanded text of the view; otherwise
105             C<null>.
106              
107              
108             =head2 ViewOriginalText => Str
109              
110             If the table is a view, the original text of the view; otherwise
111             C<null>.
112              
113              
114              
115             =head1 SEE ALSO
116              
117             This class forms part of L<Paws>, describing an object used in L<Paws::Glue>
118              
119             =head1 BUGS and CONTRIBUTIONS
120              
121             The source code is located here: https://github.com/pplu/aws-sdk-perl
122              
123             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
124              
125             =cut
126