@aws-sdk/client-athena 3.279.0 → 3.281.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +483 -0
- package/dist-types/commands/BatchGetNamedQueryCommand.d.ts +6 -0
- package/dist-types/commands/BatchGetPreparedStatementCommand.d.ts +6 -0
- package/dist-types/commands/BatchGetQueryExecutionCommand.d.ts +6 -0
- package/dist-types/commands/CreateDataCatalogCommand.d.ts +6 -0
- package/dist-types/commands/CreateNamedQueryCommand.d.ts +6 -0
- package/dist-types/commands/CreateNotebookCommand.d.ts +6 -0
- package/dist-types/commands/CreatePreparedStatementCommand.d.ts +6 -0
- package/dist-types/commands/CreatePresignedNotebookUrlCommand.d.ts +6 -0
- package/dist-types/commands/CreateWorkGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDataCatalogCommand.d.ts +6 -0
- package/dist-types/commands/DeleteNamedQueryCommand.d.ts +6 -0
- package/dist-types/commands/DeleteNotebookCommand.d.ts +6 -0
- package/dist-types/commands/DeletePreparedStatementCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWorkGroupCommand.d.ts +6 -0
- package/dist-types/commands/ExportNotebookCommand.d.ts +6 -0
- package/dist-types/commands/GetCalculationExecutionCodeCommand.d.ts +6 -0
- package/dist-types/commands/GetCalculationExecutionCommand.d.ts +6 -0
- package/dist-types/commands/GetCalculationExecutionStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetDataCatalogCommand.d.ts +6 -0
- package/dist-types/commands/GetDatabaseCommand.d.ts +6 -0
- package/dist-types/commands/GetNamedQueryCommand.d.ts +6 -0
- package/dist-types/commands/GetNotebookMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetPreparedStatementCommand.d.ts +6 -0
- package/dist-types/commands/GetQueryExecutionCommand.d.ts +6 -0
- package/dist-types/commands/GetQueryResultsCommand.d.ts +6 -0
- package/dist-types/commands/GetQueryRuntimeStatisticsCommand.d.ts +6 -0
- package/dist-types/commands/GetSessionCommand.d.ts +6 -0
- package/dist-types/commands/GetSessionStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetTableMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetWorkGroupCommand.d.ts +6 -0
- package/dist-types/commands/ImportNotebookCommand.d.ts +6 -0
- package/dist-types/commands/ListApplicationDPUSizesCommand.d.ts +6 -0
- package/dist-types/commands/ListCalculationExecutionsCommand.d.ts +6 -0
- package/dist-types/commands/ListDataCatalogsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +6 -0
- package/dist-types/commands/ListEngineVersionsCommand.d.ts +6 -0
- package/dist-types/commands/ListExecutorsCommand.d.ts +6 -0
- package/dist-types/commands/ListNamedQueriesCommand.d.ts +6 -0
- package/dist-types/commands/ListNotebookMetadataCommand.d.ts +6 -0
- package/dist-types/commands/ListNotebookSessionsCommand.d.ts +6 -0
- package/dist-types/commands/ListPreparedStatementsCommand.d.ts +6 -0
- package/dist-types/commands/ListQueryExecutionsCommand.d.ts +6 -0
- package/dist-types/commands/ListSessionsCommand.d.ts +6 -0
- package/dist-types/commands/ListTableMetadataCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListWorkGroupsCommand.d.ts +6 -0
- package/dist-types/commands/StartCalculationExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StartQueryExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StartSessionCommand.d.ts +6 -0
- package/dist-types/commands/StopCalculationExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StopQueryExecutionCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/TerminateSessionCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataCatalogCommand.d.ts +6 -0
- package/dist-types/commands/UpdateNamedQueryCommand.d.ts +6 -0
- package/dist-types/commands/UpdateNotebookCommand.d.ts +6 -0
- package/dist-types/commands/UpdateNotebookMetadataCommand.d.ts +6 -0
- package/dist-types/commands/UpdatePreparedStatementCommand.d.ts +6 -0
- package/dist-types/commands/UpdateWorkGroupCommand.d.ts +6 -0
- package/package.json +3 -3
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { DeleteDataCatalogInput, DeleteDataCatalogOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDataCatalogCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDataCatalogCommandInput extends DeleteDataCatalogInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDataCatalogCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDataCatalogCommandOutput extends DeleteDataCatalogOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { DeleteNamedQueryInput, DeleteNamedQueryOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteNamedQueryCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteNamedQueryCommandInput extends DeleteNamedQueryInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteNamedQueryCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteNamedQueryCommandOutput extends DeleteNamedQueryOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { DeleteNotebookInput, DeleteNotebookOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteNotebookCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteNotebookCommandInput extends DeleteNotebookInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteNotebookCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteNotebookCommandOutput extends DeleteNotebookOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { DeletePreparedStatementInput, DeletePreparedStatementOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeletePreparedStatementCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeletePreparedStatementCommandInput extends DeletePreparedStatementInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeletePreparedStatementCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeletePreparedStatementCommandOutput extends DeletePreparedStatementOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { DeleteWorkGroupInput, DeleteWorkGroupOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteWorkGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteWorkGroupCommandInput extends DeleteWorkGroupInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteWorkGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteWorkGroupCommandOutput extends DeleteWorkGroupOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ExportNotebookInput, ExportNotebookOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ExportNotebookCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ExportNotebookCommandInput extends ExportNotebookInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ExportNotebookCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ExportNotebookCommandOutput extends ExportNotebookOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetCalculationExecutionCodeRequest, GetCalculationExecutionCodeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetCalculationExecutionCodeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetCalculationExecutionCodeCommandInput extends GetCalculationExecutionCodeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetCalculationExecutionCodeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetCalculationExecutionCodeCommandOutput extends GetCalculationExecutionCodeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetCalculationExecutionRequest, GetCalculationExecutionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetCalculationExecutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetCalculationExecutionCommandInput extends GetCalculationExecutionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetCalculationExecutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetCalculationExecutionCommandOutput extends GetCalculationExecutionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetCalculationExecutionStatusRequest, GetCalculationExecutionStatusResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetCalculationExecutionStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetCalculationExecutionStatusCommandInput extends GetCalculationExecutionStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetCalculationExecutionStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetCalculationExecutionStatusCommandOutput extends GetCalculationExecutionStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetDataCatalogInput, GetDataCatalogOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetDataCatalogCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetDataCatalogCommandInput extends GetDataCatalogInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetDataCatalogCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetDataCatalogCommandOutput extends GetDataCatalogOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetDatabaseCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetDatabaseCommandInput extends GetDatabaseInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetDatabaseCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetNamedQueryInput, GetNamedQueryOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetNamedQueryCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetNamedQueryCommandInput extends GetNamedQueryInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetNamedQueryCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetNamedQueryCommandOutput extends GetNamedQueryOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetNotebookMetadataInput, GetNotebookMetadataOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetNotebookMetadataCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetNotebookMetadataCommandInput extends GetNotebookMetadataInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetNotebookMetadataCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetNotebookMetadataCommandOutput extends GetNotebookMetadataOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetPreparedStatementInput, GetPreparedStatementOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetPreparedStatementCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetPreparedStatementCommandInput extends GetPreparedStatementInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetPreparedStatementCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetPreparedStatementCommandOutput extends GetPreparedStatementOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetQueryExecutionInput, GetQueryExecutionOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetQueryExecutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetQueryExecutionCommandInput extends GetQueryExecutionInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetQueryExecutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetQueryExecutionCommandOutput extends GetQueryExecutionOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetQueryResultsInput, GetQueryResultsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetQueryResultsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetQueryResultsCommandInput extends GetQueryResultsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetQueryResultsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetQueryResultsCommandOutput extends GetQueryResultsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetQueryRuntimeStatisticsInput, GetQueryRuntimeStatisticsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetQueryRuntimeStatisticsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetQueryRuntimeStatisticsCommandInput extends GetQueryRuntimeStatisticsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetQueryRuntimeStatisticsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetQueryRuntimeStatisticsCommandOutput extends GetQueryRuntimeStatisticsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetSessionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetSessionCommandInput extends GetSessionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetSessionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetSessionStatusRequest, GetSessionStatusResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetSessionStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetSessionStatusCommandInput extends GetSessionStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetSessionStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetSessionStatusCommandOutput extends GetSessionStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetTableMetadataInput, GetTableMetadataOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetTableMetadataCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetTableMetadataCommandInput extends GetTableMetadataInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetTableMetadataCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetTableMetadataCommandOutput extends GetTableMetadataOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { GetWorkGroupInput, GetWorkGroupOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetWorkGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetWorkGroupCommandInput extends GetWorkGroupInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetWorkGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetWorkGroupCommandOutput extends GetWorkGroupOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ImportNotebookInput, ImportNotebookOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ImportNotebookCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ImportNotebookCommandInput extends ImportNotebookInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ImportNotebookCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ImportNotebookCommandOutput extends ImportNotebookOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListApplicationDPUSizesInput, ListApplicationDPUSizesOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListApplicationDPUSizesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListApplicationDPUSizesCommandInput extends ListApplicationDPUSizesInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListApplicationDPUSizesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListApplicationDPUSizesCommandOutput extends ListApplicationDPUSizesOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListCalculationExecutionsRequest, ListCalculationExecutionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListCalculationExecutionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListCalculationExecutionsCommandInput extends ListCalculationExecutionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListCalculationExecutionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListCalculationExecutionsCommandOutput extends ListCalculationExecutionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListDataCatalogsInput, ListDataCatalogsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDataCatalogsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDataCatalogsCommandInput extends ListDataCatalogsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDataCatalogsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDataCatalogsCommandOutput extends ListDataCatalogsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDatabasesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDatabasesCommandInput extends ListDatabasesInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDatabasesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListEngineVersionsInput, ListEngineVersionsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListEngineVersionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListEngineVersionsCommandInput extends ListEngineVersionsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListEngineVersionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListEngineVersionsCommandOutput extends ListEngineVersionsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListExecutorsRequest, ListExecutorsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListExecutorsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListExecutorsCommandInput extends ListExecutorsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListExecutorsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListExecutorsCommandOutput extends ListExecutorsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListNamedQueriesInput, ListNamedQueriesOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListNamedQueriesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListNamedQueriesCommandInput extends ListNamedQueriesInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListNamedQueriesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListNamedQueriesCommandOutput extends ListNamedQueriesOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListNotebookMetadataInput, ListNotebookMetadataOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListNotebookMetadataCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListNotebookMetadataCommandInput extends ListNotebookMetadataInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListNotebookMetadataCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListNotebookMetadataCommandOutput extends ListNotebookMetadataOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListNotebookSessionsRequest, ListNotebookSessionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListNotebookSessionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListNotebookSessionsCommandInput extends ListNotebookSessionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListNotebookSessionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListNotebookSessionsCommandOutput extends ListNotebookSessionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListPreparedStatementsInput, ListPreparedStatementsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListPreparedStatementsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListPreparedStatementsCommandInput extends ListPreparedStatementsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListPreparedStatementsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListPreparedStatementsCommandOutput extends ListPreparedStatementsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListQueryExecutionsInput, ListQueryExecutionsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListQueryExecutionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListQueryExecutionsCommandInput extends ListQueryExecutionsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListQueryExecutionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListQueryExecutionsCommandOutput extends ListQueryExecutionsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListSessionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListSessionsCommandInput extends ListSessionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListSessionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListSessionsCommandOutput extends ListSessionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListTableMetadataInput, ListTableMetadataOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTableMetadataCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTableMetadataCommandInput extends ListTableMetadataInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTableMetadataCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTableMetadataCommandOutput extends ListTableMetadataOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { ListWorkGroupsInput, ListWorkGroupsOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListWorkGroupsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListWorkGroupsCommandInput extends ListWorkGroupsInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListWorkGroupsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListWorkGroupsCommandOutput extends ListWorkGroupsOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { StartCalculationExecutionRequest, StartCalculationExecutionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartCalculationExecutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartCalculationExecutionCommandInput extends StartCalculationExecutionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartCalculationExecutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartCalculationExecutionCommandOutput extends StartCalculationExecutionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient";
|
|
5
5
|
import { StartQueryExecutionInput, StartQueryExecutionOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartQueryExecutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartQueryExecutionCommandInput extends StartQueryExecutionInput {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartQueryExecutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartQueryExecutionCommandOutput extends StartQueryExecutionOutput, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|