libZSservicesZSamazonka-athenaZSamazonka-athena
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Athena.BatchGetQueryExecution

Description

Returns the details of a single query execution or a list of up to 50 query executions, which you provide as an array of query execution ID strings. Requires you to have access to the workgroup in which the queries ran. To get a list of query execution IDs, use ListQueryExecutionsInput$WorkGroup. Query executions differ from named (saved) queries. Use BatchGetNamedQueryInput to get details about named queries.

Synopsis

Creating a Request

data BatchGetQueryExecution Source #

See: newBatchGetQueryExecution smart constructor.

Constructors

BatchGetQueryExecution' 

Fields

Instances

Instances details
Eq BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Read BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Show BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Generic BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Associated Types

type Rep BatchGetQueryExecution :: Type -> Type #

NFData BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Methods

rnf :: BatchGetQueryExecution -> () #

Hashable BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

ToJSON BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

AWSRequest BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Associated Types

type AWSResponse BatchGetQueryExecution #

ToHeaders BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

ToPath BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

ToQuery BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

type Rep BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

type Rep BatchGetQueryExecution = D1 ('MetaData "BatchGetQueryExecution" "Amazonka.Athena.BatchGetQueryExecution" "libZSservicesZSamazonka-athenaZSamazonka-athena" 'False) (C1 ('MetaCons "BatchGetQueryExecution'" 'PrefixI 'True) (S1 ('MetaSel ('Just "queryExecutionIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))
type AWSResponse BatchGetQueryExecution Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

newBatchGetQueryExecution Source #

Create a value of BatchGetQueryExecution with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:queryExecutionIds:BatchGetQueryExecution', batchGetQueryExecution_queryExecutionIds - An array of query execution IDs.

Request Lenses

Destructuring the Response

data BatchGetQueryExecutionResponse Source #

See: newBatchGetQueryExecutionResponse smart constructor.

Constructors

BatchGetQueryExecutionResponse' 

Fields

Instances

Instances details
Eq BatchGetQueryExecutionResponse Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Read BatchGetQueryExecutionResponse Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Show BatchGetQueryExecutionResponse Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Generic BatchGetQueryExecutionResponse Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

Associated Types

type Rep BatchGetQueryExecutionResponse :: Type -> Type #

NFData BatchGetQueryExecutionResponse Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

type Rep BatchGetQueryExecutionResponse Source # 
Instance details

Defined in Amazonka.Athena.BatchGetQueryExecution

type Rep BatchGetQueryExecutionResponse = D1 ('MetaData "BatchGetQueryExecutionResponse" "Amazonka.Athena.BatchGetQueryExecution" "libZSservicesZSamazonka-athenaZSamazonka-athena" 'False) (C1 ('MetaCons "BatchGetQueryExecutionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "unprocessedQueryExecutionIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [UnprocessedQueryExecutionId])) :*: (S1 ('MetaSel ('Just "queryExecutions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [QueryExecution])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newBatchGetQueryExecutionResponse Source #

Create a value of BatchGetQueryExecutionResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:unprocessedQueryExecutionIds:BatchGetQueryExecutionResponse', batchGetQueryExecutionResponse_unprocessedQueryExecutionIds - Information about the query executions that failed to run.

$sel:queryExecutions:BatchGetQueryExecutionResponse', batchGetQueryExecutionResponse_queryExecutions - Information about a query execution.

$sel:httpStatus:BatchGetQueryExecutionResponse', batchGetQueryExecutionResponse_httpStatus - The response's http status code.

Response Lenses