line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Glue::Partition; |
2
|
1
|
|
|
1
|
|
491
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
3
|
|
|
|
|
|
|
has CreationTime => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has DatabaseName => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has LastAccessTime => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has LastAnalyzedTime => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Parameters => (is => 'ro', isa => 'Paws::Glue::ParametersMap'); |
8
|
|
|
|
|
|
|
has StorageDescriptor => (is => 'ro', isa => 'Paws::Glue::StorageDescriptor'); |
9
|
|
|
|
|
|
|
has TableName => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has Values => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::Glue::Partition |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 USAGE |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This class represents one of two things: |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
26
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Glue::Partition object: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { CreationTime => $value, ..., Values => $value }); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head3 Results returned from an API call |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::Partition object: |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
37
|
|
|
|
|
|
|
$result->Att1->CreationTime |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 DESCRIPTION |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Represents a slice of table data. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 CreationTime => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The time at which the partition was created. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 DatabaseName => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The name of the catalog database where the table in question is |
54
|
|
|
|
|
|
|
located. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 LastAccessTime => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The last time at which the partition was accessed. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 LastAnalyzedTime => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The last time at which column statistics were computed for this |
65
|
|
|
|
|
|
|
partition. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 Parameters => L<Paws::Glue::ParametersMap> |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Partition parameters, in the form of a list of key-value pairs. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 StorageDescriptor => L<Paws::Glue::StorageDescriptor> |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
Provides information about the physical location where the partition is |
76
|
|
|
|
|
|
|
stored. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 TableName => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The name of the table in question. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 Values => ArrayRef[Str|Undef] |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The values of the partition. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 SEE ALSO |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Glue> |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=cut |
101
|
|
|
|
|
|
|
|