line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Athena::QueryExecution; |
2
|
1
|
|
|
1
|
|
680
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
3
|
|
|
|
|
|
|
has Query => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has QueryExecutionContext => (is => 'ro', isa => 'Paws::Athena::QueryExecutionContext'); |
5
|
|
|
|
|
|
|
has QueryExecutionId => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has ResultConfiguration => (is => 'ro', isa => 'Paws::Athena::ResultConfiguration'); |
7
|
|
|
|
|
|
|
has Statistics => (is => 'ro', isa => 'Paws::Athena::QueryExecutionStatistics'); |
8
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Paws::Athena::QueryExecutionStatus'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::Athena::QueryExecution |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 USAGE |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
This class represents one of two things: |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
24
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Athena::QueryExecution object: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Query => $value, ..., Status => $value }); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head3 Results returned from an API call |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Athena::QueryExecution object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
35
|
|
|
|
|
|
|
$result->Att1->Query |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Information about a single instance of a query execution. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 Query => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The SQL query statements which the query execution ran. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 QueryExecutionContext => L<Paws::Athena::QueryExecutionContext> |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The database in which the query execution occurred. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 QueryExecutionId => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The unique identifier for each query execution. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 ResultConfiguration => L<Paws::Athena::ResultConfiguration> |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
The location in Amazon S3 where query results were stored and the |
62
|
|
|
|
|
|
|
encryption option, if any, used for query results. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 Statistics => L<Paws::Athena::QueryExecutionStatistics> |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
The amount of data scanned during the query execution and the amount of |
68
|
|
|
|
|
|
|
time that it took to execute. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head2 Status => L<Paws::Athena::QueryExecutionStatus> |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
The completion date, current state, submission time, and state change |
74
|
|
|
|
|
|
|
reason (if applicable) for the query execution. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 SEE ALSO |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Athena> |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=cut |
89
|
|
|
|
|
|
|
|