@effect-aws/client-athena 1.9.3
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/AthenaClientInstance/package.json +6 -0
- package/AthenaService/package.json +6 -0
- package/AthenaServiceConfig/package.json +6 -0
- package/Errors/package.json +6 -0
- package/LICENSE +19 -0
- package/README.md +58 -0
- package/dist/cjs/AthenaClientInstance.d.ts +24 -0
- package/dist/cjs/AthenaClientInstance.d.ts.map +1 -0
- package/dist/cjs/AthenaClientInstance.js +50 -0
- package/dist/cjs/AthenaClientInstance.js.map +1 -0
- package/dist/cjs/AthenaService.d.ts +313 -0
- package/dist/cjs/AthenaService.d.ts.map +1 -0
- package/dist/cjs/AthenaService.js +127 -0
- package/dist/cjs/AthenaService.js.map +1 -0
- package/dist/cjs/AthenaServiceConfig.d.ts +25 -0
- package/dist/cjs/AthenaServiceConfig.d.ts.map +1 -0
- package/dist/cjs/AthenaServiceConfig.js +35 -0
- package/dist/cjs/AthenaServiceConfig.js.map +1 -0
- package/dist/cjs/Errors.d.ts +13 -0
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +14 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/AthenaClientInstance.d.ts +24 -0
- package/dist/dts/AthenaClientInstance.d.ts.map +1 -0
- package/dist/dts/AthenaService.d.ts +313 -0
- package/dist/dts/AthenaService.d.ts.map +1 -0
- package/dist/dts/AthenaServiceConfig.d.ts +25 -0
- package/dist/dts/AthenaServiceConfig.d.ts.map +1 -0
- package/dist/dts/Errors.d.ts +13 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/AthenaClientInstance.js +23 -0
- package/dist/esm/AthenaClientInstance.js.map +1 -0
- package/dist/esm/AthenaService.js +100 -0
- package/dist/esm/AthenaService.js.map +1 -0
- package/dist/esm/AthenaServiceConfig.js +31 -0
- package/dist/esm/AthenaServiceConfig.js.map +1 -0
- package/dist/esm/Errors.js +11 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +71 -0
- package/src/AthenaClientInstance.ts +33 -0
- package/src/AthenaService.ts +1109 -0
- package/src/AthenaServiceConfig.ts +52 -0
- package/src/Errors.ts +29 -0
- package/src/index.ts +44 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2025 Victor Korzunin
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @effect-aws/client-athena
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@effect-aws/client-athena)
|
|
4
|
+
[](https://www.npmjs.com/package/@effect-aws/client-athena)
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm install --save @effect-aws/client-athena
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
With default AthenaClient instance:
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { Athena } from "@effect-aws/client-athena";
|
|
18
|
+
|
|
19
|
+
const program = Athena.startQueryExecution(args);
|
|
20
|
+
|
|
21
|
+
const result = pipe(
|
|
22
|
+
program,
|
|
23
|
+
Effect.provide(Athena.defaultLayer),
|
|
24
|
+
Effect.runPromise,
|
|
25
|
+
);
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
With custom AthenaClient instance:
|
|
29
|
+
|
|
30
|
+
```typescript
|
|
31
|
+
import { Athena } from "@effect-aws/client-athena";
|
|
32
|
+
|
|
33
|
+
const program = Athena.startQueryExecution(args);
|
|
34
|
+
|
|
35
|
+
const result = await pipe(
|
|
36
|
+
program,
|
|
37
|
+
Effect.provide(
|
|
38
|
+
Athena.baseLayer(() => new AthenaClient({ region: "eu-central-1" })),
|
|
39
|
+
),
|
|
40
|
+
Effect.runPromise,
|
|
41
|
+
);
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
With custom AthenaClient configuration:
|
|
45
|
+
|
|
46
|
+
```typescript
|
|
47
|
+
import { Athena } from "@effect-aws/client-athena";
|
|
48
|
+
|
|
49
|
+
const program = Athena.startQueryExecution(args);
|
|
50
|
+
|
|
51
|
+
const result = await pipe(
|
|
52
|
+
program,
|
|
53
|
+
Effect.provide(Athena.layer({ region: "eu-central-1" })),
|
|
54
|
+
Effect.runPromiseExit,
|
|
55
|
+
);
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
or use `Athena.baseLayer((default) => new AthenaClient({ ...default, region: "eu-central-1" }))`
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { AthenaClient } from "@aws-sdk/client-athena";
|
|
5
|
+
import { Context, Effect, Layer } from "effect";
|
|
6
|
+
declare const AthenaClientInstance_base: Context.TagClass<AthenaClientInstance, "@effect-aws/client-athena/AthenaClientInstance", AthenaClient>;
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category tags
|
|
10
|
+
*/
|
|
11
|
+
export declare class AthenaClientInstance extends AthenaClientInstance_base {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category constructors
|
|
16
|
+
*/
|
|
17
|
+
export declare const make: Effect.Effect<AthenaClient, never, import("effect/Scope").Scope>;
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category layers
|
|
21
|
+
*/
|
|
22
|
+
export declare const layer: Layer.Layer<AthenaClientInstance, never, never>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=AthenaClientInstance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AthenaClientInstance.d.ts","sourceRoot":"","sources":["../../src/AthenaClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,oBAAqB,SAAQ,yBAEH;CAAG;AAE1C;;;GAGG;AACH,eAAO,MAAM,IAAI,kEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,iDAA2C,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.layer = exports.make = exports.AthenaClientInstance = void 0;
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
const client_athena_1 = require("@aws-sdk/client-athena");
|
|
31
|
+
const effect_1 = require("effect");
|
|
32
|
+
const AthenaServiceConfig = __importStar(require("./AthenaServiceConfig.js"));
|
|
33
|
+
/**
|
|
34
|
+
* @since 1.0.0
|
|
35
|
+
* @category tags
|
|
36
|
+
*/
|
|
37
|
+
class AthenaClientInstance extends effect_1.Context.Tag("@effect-aws/client-athena/AthenaClientInstance")() {
|
|
38
|
+
}
|
|
39
|
+
exports.AthenaClientInstance = AthenaClientInstance;
|
|
40
|
+
/**
|
|
41
|
+
* @since 1.0.0
|
|
42
|
+
* @category constructors
|
|
43
|
+
*/
|
|
44
|
+
exports.make = effect_1.Effect.flatMap(AthenaServiceConfig.toAthenaClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_athena_1.AthenaClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
|
|
45
|
+
/**
|
|
46
|
+
* @since 1.0.0
|
|
47
|
+
* @category layers
|
|
48
|
+
*/
|
|
49
|
+
exports.layer = effect_1.Layer.scoped(AthenaClientInstance, exports.make);
|
|
50
|
+
//# sourceMappingURL=AthenaClientInstance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AthenaClientInstance.js","sourceRoot":"","sources":["../../src/AthenaClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,0DAAsD;AACtD,mCAAgD;AAChD,8EAAgE;AAEhE;;;GAGG;AACH,MAAa,oBAAqB,SAAQ,gBAAO,CAAC,GAAG,CACnD,gDAAgD,CACjD,EAAsC;CAAG;AAF1C,oDAE0C;AAE1C;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,mBAAmB,CAAC,oBAAoB,EACxC,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,4BAAY,CAAC,MAAM,CAAC,CAAC,EAC3C,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,oBAAoB,EAAE,YAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { type AthenaClient, type AthenaClientConfig, type BatchGetNamedQueryCommandInput, type BatchGetNamedQueryCommandOutput, type BatchGetPreparedStatementCommandInput, type BatchGetPreparedStatementCommandOutput, type BatchGetQueryExecutionCommandInput, type BatchGetQueryExecutionCommandOutput, type CancelCapacityReservationCommandInput, type CancelCapacityReservationCommandOutput, type CreateCapacityReservationCommandInput, type CreateCapacityReservationCommandOutput, type CreateDataCatalogCommandInput, type CreateDataCatalogCommandOutput, type CreateNamedQueryCommandInput, type CreateNamedQueryCommandOutput, type CreateNotebookCommandInput, type CreateNotebookCommandOutput, type CreatePreparedStatementCommandInput, type CreatePreparedStatementCommandOutput, type CreatePresignedNotebookUrlCommandInput, type CreatePresignedNotebookUrlCommandOutput, type CreateWorkGroupCommandInput, type CreateWorkGroupCommandOutput, type DeleteCapacityReservationCommandInput, type DeleteCapacityReservationCommandOutput, type DeleteDataCatalogCommandInput, type DeleteDataCatalogCommandOutput, type DeleteNamedQueryCommandInput, type DeleteNamedQueryCommandOutput, type DeleteNotebookCommandInput, type DeleteNotebookCommandOutput, type DeletePreparedStatementCommandInput, type DeletePreparedStatementCommandOutput, type DeleteWorkGroupCommandInput, type DeleteWorkGroupCommandOutput, type ExportNotebookCommandInput, type ExportNotebookCommandOutput, type GetCalculationExecutionCodeCommandInput, type GetCalculationExecutionCodeCommandOutput, type GetCalculationExecutionCommandInput, type GetCalculationExecutionCommandOutput, type GetCalculationExecutionStatusCommandInput, type GetCalculationExecutionStatusCommandOutput, type GetCapacityAssignmentConfigurationCommandInput, type GetCapacityAssignmentConfigurationCommandOutput, type GetCapacityReservationCommandInput, type GetCapacityReservationCommandOutput, type GetDatabaseCommandInput, type GetDatabaseCommandOutput, type GetDataCatalogCommandInput, type GetDataCatalogCommandOutput, type GetNamedQueryCommandInput, type GetNamedQueryCommandOutput, type GetNotebookMetadataCommandInput, type GetNotebookMetadataCommandOutput, type GetPreparedStatementCommandInput, type GetPreparedStatementCommandOutput, type GetQueryExecutionCommandInput, type GetQueryExecutionCommandOutput, type GetQueryResultsCommandInput, type GetQueryResultsCommandOutput, type GetQueryRuntimeStatisticsCommandInput, type GetQueryRuntimeStatisticsCommandOutput, type GetSessionCommandInput, type GetSessionCommandOutput, type GetSessionStatusCommandInput, type GetSessionStatusCommandOutput, type GetTableMetadataCommandInput, type GetTableMetadataCommandOutput, type GetWorkGroupCommandInput, type GetWorkGroupCommandOutput, type ImportNotebookCommandInput, type ImportNotebookCommandOutput, type ListApplicationDPUSizesCommandInput, type ListApplicationDPUSizesCommandOutput, type ListCalculationExecutionsCommandInput, type ListCalculationExecutionsCommandOutput, type ListCapacityReservationsCommandInput, type ListCapacityReservationsCommandOutput, type ListDatabasesCommandInput, type ListDatabasesCommandOutput, type ListDataCatalogsCommandInput, type ListDataCatalogsCommandOutput, type ListEngineVersionsCommandInput, type ListEngineVersionsCommandOutput, type ListExecutorsCommandInput, type ListExecutorsCommandOutput, type ListNamedQueriesCommandInput, type ListNamedQueriesCommandOutput, type ListNotebookMetadataCommandInput, type ListNotebookMetadataCommandOutput, type ListNotebookSessionsCommandInput, type ListNotebookSessionsCommandOutput, type ListPreparedStatementsCommandInput, type ListPreparedStatementsCommandOutput, type ListQueryExecutionsCommandInput, type ListQueryExecutionsCommandOutput, type ListSessionsCommandInput, type ListSessionsCommandOutput, type ListTableMetadataCommandInput, type ListTableMetadataCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListWorkGroupsCommandInput, type ListWorkGroupsCommandOutput, type PutCapacityAssignmentConfigurationCommandInput, type PutCapacityAssignmentConfigurationCommandOutput, type StartCalculationExecutionCommandInput, type StartCalculationExecutionCommandOutput, type StartQueryExecutionCommandInput, type StartQueryExecutionCommandOutput, type StartSessionCommandInput, type StartSessionCommandOutput, type StopCalculationExecutionCommandInput, type StopCalculationExecutionCommandOutput, type StopQueryExecutionCommandInput, type StopQueryExecutionCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TerminateSessionCommandInput, type TerminateSessionCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateCapacityReservationCommandInput, type UpdateCapacityReservationCommandOutput, type UpdateDataCatalogCommandInput, type UpdateDataCatalogCommandOutput, type UpdateNamedQueryCommandInput, type UpdateNamedQueryCommandOutput, type UpdateNotebookCommandInput, type UpdateNotebookCommandOutput, type UpdateNotebookMetadataCommandInput, type UpdateNotebookMetadataCommandOutput, type UpdatePreparedStatementCommandInput, type UpdatePreparedStatementCommandOutput, type UpdateWorkGroupCommandInput, type UpdateWorkGroupCommandOutput } from "@aws-sdk/client-athena";
|
|
5
|
+
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import { Effect, Layer } from "effect";
|
|
7
|
+
import * as Instance from "./AthenaClientInstance.js";
|
|
8
|
+
import type { InternalServerError, InvalidRequestError, MetadataError, ResourceNotFoundError, SessionAlreadyExistsError, TooManyRequestsError } from "./Errors.js";
|
|
9
|
+
interface AthenaService$ {
|
|
10
|
+
readonly _: unique symbol;
|
|
11
|
+
/**
|
|
12
|
+
* @see {@link BatchGetNamedQueryCommand}
|
|
13
|
+
*/
|
|
14
|
+
batchGetNamedQuery(args: BatchGetNamedQueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetNamedQueryCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
15
|
+
/**
|
|
16
|
+
* @see {@link BatchGetPreparedStatementCommand}
|
|
17
|
+
*/
|
|
18
|
+
batchGetPreparedStatement(args: BatchGetPreparedStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetPreparedStatementCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link BatchGetQueryExecutionCommand}
|
|
21
|
+
*/
|
|
22
|
+
batchGetQueryExecution(args: BatchGetQueryExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetQueryExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
23
|
+
/**
|
|
24
|
+
* @see {@link CancelCapacityReservationCommand}
|
|
25
|
+
*/
|
|
26
|
+
cancelCapacityReservation(args: CancelCapacityReservationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelCapacityReservationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
27
|
+
/**
|
|
28
|
+
* @see {@link CreateCapacityReservationCommand}
|
|
29
|
+
*/
|
|
30
|
+
createCapacityReservation(args: CreateCapacityReservationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCapacityReservationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link CreateDataCatalogCommand}
|
|
33
|
+
*/
|
|
34
|
+
createDataCatalog(args: CreateDataCatalogCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDataCatalogCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link CreateNamedQueryCommand}
|
|
37
|
+
*/
|
|
38
|
+
createNamedQuery(args: CreateNamedQueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateNamedQueryCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
39
|
+
/**
|
|
40
|
+
* @see {@link CreateNotebookCommand}
|
|
41
|
+
*/
|
|
42
|
+
createNotebook(args: CreateNotebookCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateNotebookCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link CreatePreparedStatementCommand}
|
|
45
|
+
*/
|
|
46
|
+
createPreparedStatement(args: CreatePreparedStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePreparedStatementCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link CreatePresignedNotebookUrlCommand}
|
|
49
|
+
*/
|
|
50
|
+
createPresignedNotebookUrl(args: CreatePresignedNotebookUrlCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePresignedNotebookUrlCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link CreateWorkGroupCommand}
|
|
53
|
+
*/
|
|
54
|
+
createWorkGroup(args: CreateWorkGroupCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateWorkGroupCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link DeleteCapacityReservationCommand}
|
|
57
|
+
*/
|
|
58
|
+
deleteCapacityReservation(args: DeleteCapacityReservationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCapacityReservationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link DeleteDataCatalogCommand}
|
|
61
|
+
*/
|
|
62
|
+
deleteDataCatalog(args: DeleteDataCatalogCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDataCatalogCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link DeleteNamedQueryCommand}
|
|
65
|
+
*/
|
|
66
|
+
deleteNamedQuery(args: DeleteNamedQueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteNamedQueryCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link DeleteNotebookCommand}
|
|
69
|
+
*/
|
|
70
|
+
deleteNotebook(args: DeleteNotebookCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteNotebookCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link DeletePreparedStatementCommand}
|
|
73
|
+
*/
|
|
74
|
+
deletePreparedStatement(args: DeletePreparedStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePreparedStatementCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link DeleteWorkGroupCommand}
|
|
77
|
+
*/
|
|
78
|
+
deleteWorkGroup(args: DeleteWorkGroupCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteWorkGroupCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link ExportNotebookCommand}
|
|
81
|
+
*/
|
|
82
|
+
exportNotebook(args: ExportNotebookCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExportNotebookCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
83
|
+
/**
|
|
84
|
+
* @see {@link GetCalculationExecutionCommand}
|
|
85
|
+
*/
|
|
86
|
+
getCalculationExecution(args: GetCalculationExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCalculationExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
87
|
+
/**
|
|
88
|
+
* @see {@link GetCalculationExecutionCodeCommand}
|
|
89
|
+
*/
|
|
90
|
+
getCalculationExecutionCode(args: GetCalculationExecutionCodeCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCalculationExecutionCodeCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
91
|
+
/**
|
|
92
|
+
* @see {@link GetCalculationExecutionStatusCommand}
|
|
93
|
+
*/
|
|
94
|
+
getCalculationExecutionStatus(args: GetCalculationExecutionStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCalculationExecutionStatusCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
95
|
+
/**
|
|
96
|
+
* @see {@link GetCapacityAssignmentConfigurationCommand}
|
|
97
|
+
*/
|
|
98
|
+
getCapacityAssignmentConfiguration(args: GetCapacityAssignmentConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCapacityAssignmentConfigurationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
99
|
+
/**
|
|
100
|
+
* @see {@link GetCapacityReservationCommand}
|
|
101
|
+
*/
|
|
102
|
+
getCapacityReservation(args: GetCapacityReservationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCapacityReservationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
103
|
+
/**
|
|
104
|
+
* @see {@link GetDataCatalogCommand}
|
|
105
|
+
*/
|
|
106
|
+
getDataCatalog(args: GetDataCatalogCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataCatalogCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
107
|
+
/**
|
|
108
|
+
* @see {@link GetDatabaseCommand}
|
|
109
|
+
*/
|
|
110
|
+
getDatabase(args: GetDatabaseCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDatabaseCommandOutput, SdkError | InternalServerError | InvalidRequestError | MetadataError>;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link GetNamedQueryCommand}
|
|
113
|
+
*/
|
|
114
|
+
getNamedQuery(args: GetNamedQueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetNamedQueryCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
115
|
+
/**
|
|
116
|
+
* @see {@link GetNotebookMetadataCommand}
|
|
117
|
+
*/
|
|
118
|
+
getNotebookMetadata(args: GetNotebookMetadataCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetNotebookMetadataCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
119
|
+
/**
|
|
120
|
+
* @see {@link GetPreparedStatementCommand}
|
|
121
|
+
*/
|
|
122
|
+
getPreparedStatement(args: GetPreparedStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPreparedStatementCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link GetQueryExecutionCommand}
|
|
125
|
+
*/
|
|
126
|
+
getQueryExecution(args: GetQueryExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetQueryExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
127
|
+
/**
|
|
128
|
+
* @see {@link GetQueryResultsCommand}
|
|
129
|
+
*/
|
|
130
|
+
getQueryResults(args: GetQueryResultsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetQueryResultsCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
131
|
+
/**
|
|
132
|
+
* @see {@link GetQueryRuntimeStatisticsCommand}
|
|
133
|
+
*/
|
|
134
|
+
getQueryRuntimeStatistics(args: GetQueryRuntimeStatisticsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetQueryRuntimeStatisticsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
135
|
+
/**
|
|
136
|
+
* @see {@link GetSessionCommand}
|
|
137
|
+
*/
|
|
138
|
+
getSession(args: GetSessionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSessionCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link GetSessionStatusCommand}
|
|
141
|
+
*/
|
|
142
|
+
getSessionStatus(args: GetSessionStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSessionStatusCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
143
|
+
/**
|
|
144
|
+
* @see {@link GetTableMetadataCommand}
|
|
145
|
+
*/
|
|
146
|
+
getTableMetadata(args: GetTableMetadataCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTableMetadataCommandOutput, SdkError | InternalServerError | InvalidRequestError | MetadataError>;
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link GetWorkGroupCommand}
|
|
149
|
+
*/
|
|
150
|
+
getWorkGroup(args: GetWorkGroupCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetWorkGroupCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
151
|
+
/**
|
|
152
|
+
* @see {@link ImportNotebookCommand}
|
|
153
|
+
*/
|
|
154
|
+
importNotebook(args: ImportNotebookCommandInput, options?: HttpHandlerOptions): Effect.Effect<ImportNotebookCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
155
|
+
/**
|
|
156
|
+
* @see {@link ListApplicationDPUSizesCommand}
|
|
157
|
+
*/
|
|
158
|
+
listApplicationDPUSizes(args: ListApplicationDPUSizesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListApplicationDPUSizesCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
159
|
+
/**
|
|
160
|
+
* @see {@link ListCalculationExecutionsCommand}
|
|
161
|
+
*/
|
|
162
|
+
listCalculationExecutions(args: ListCalculationExecutionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCalculationExecutionsCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
163
|
+
/**
|
|
164
|
+
* @see {@link ListCapacityReservationsCommand}
|
|
165
|
+
*/
|
|
166
|
+
listCapacityReservations(args: ListCapacityReservationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCapacityReservationsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
167
|
+
/**
|
|
168
|
+
* @see {@link ListDataCatalogsCommand}
|
|
169
|
+
*/
|
|
170
|
+
listDataCatalogs(args: ListDataCatalogsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDataCatalogsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
171
|
+
/**
|
|
172
|
+
* @see {@link ListDatabasesCommand}
|
|
173
|
+
*/
|
|
174
|
+
listDatabases(args: ListDatabasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatabasesCommandOutput, SdkError | InternalServerError | InvalidRequestError | MetadataError>;
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link ListEngineVersionsCommand}
|
|
177
|
+
*/
|
|
178
|
+
listEngineVersions(args: ListEngineVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEngineVersionsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
179
|
+
/**
|
|
180
|
+
* @see {@link ListExecutorsCommand}
|
|
181
|
+
*/
|
|
182
|
+
listExecutors(args: ListExecutorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListExecutorsCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link ListNamedQueriesCommand}
|
|
185
|
+
*/
|
|
186
|
+
listNamedQueries(args: ListNamedQueriesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListNamedQueriesCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
187
|
+
/**
|
|
188
|
+
* @see {@link ListNotebookMetadataCommand}
|
|
189
|
+
*/
|
|
190
|
+
listNotebookMetadata(args: ListNotebookMetadataCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListNotebookMetadataCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
191
|
+
/**
|
|
192
|
+
* @see {@link ListNotebookSessionsCommand}
|
|
193
|
+
*/
|
|
194
|
+
listNotebookSessions(args: ListNotebookSessionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListNotebookSessionsCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
195
|
+
/**
|
|
196
|
+
* @see {@link ListPreparedStatementsCommand}
|
|
197
|
+
*/
|
|
198
|
+
listPreparedStatements(args: ListPreparedStatementsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPreparedStatementsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link ListQueryExecutionsCommand}
|
|
201
|
+
*/
|
|
202
|
+
listQueryExecutions(args: ListQueryExecutionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListQueryExecutionsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link ListSessionsCommand}
|
|
205
|
+
*/
|
|
206
|
+
listSessions(args: ListSessionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSessionsCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
207
|
+
/**
|
|
208
|
+
* @see {@link ListTableMetadataCommand}
|
|
209
|
+
*/
|
|
210
|
+
listTableMetadata(args: ListTableMetadataCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTableMetadataCommandOutput, SdkError | InternalServerError | InvalidRequestError | MetadataError>;
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link ListTagsForResourceCommand}
|
|
213
|
+
*/
|
|
214
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
215
|
+
/**
|
|
216
|
+
* @see {@link ListWorkGroupsCommand}
|
|
217
|
+
*/
|
|
218
|
+
listWorkGroups(args: ListWorkGroupsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListWorkGroupsCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link PutCapacityAssignmentConfigurationCommand}
|
|
221
|
+
*/
|
|
222
|
+
putCapacityAssignmentConfiguration(args: PutCapacityAssignmentConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutCapacityAssignmentConfigurationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link StartCalculationExecutionCommand}
|
|
225
|
+
*/
|
|
226
|
+
startCalculationExecution(args: StartCalculationExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartCalculationExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link StartQueryExecutionCommand}
|
|
229
|
+
*/
|
|
230
|
+
startQueryExecution(args: StartQueryExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartQueryExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link StartSessionCommand}
|
|
233
|
+
*/
|
|
234
|
+
startSession(args: StartSessionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartSessionCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError | SessionAlreadyExistsError | TooManyRequestsError>;
|
|
235
|
+
/**
|
|
236
|
+
* @see {@link StopCalculationExecutionCommand}
|
|
237
|
+
*/
|
|
238
|
+
stopCalculationExecution(args: StopCalculationExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopCalculationExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link StopQueryExecutionCommand}
|
|
241
|
+
*/
|
|
242
|
+
stopQueryExecution(args: StopQueryExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopQueryExecutionCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
243
|
+
/**
|
|
244
|
+
* @see {@link TagResourceCommand}
|
|
245
|
+
*/
|
|
246
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
247
|
+
/**
|
|
248
|
+
* @see {@link TerminateSessionCommand}
|
|
249
|
+
*/
|
|
250
|
+
terminateSession(args: TerminateSessionCommandInput, options?: HttpHandlerOptions): Effect.Effect<TerminateSessionCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
251
|
+
/**
|
|
252
|
+
* @see {@link UntagResourceCommand}
|
|
253
|
+
*/
|
|
254
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
255
|
+
/**
|
|
256
|
+
* @see {@link UpdateCapacityReservationCommand}
|
|
257
|
+
*/
|
|
258
|
+
updateCapacityReservation(args: UpdateCapacityReservationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCapacityReservationCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link UpdateDataCatalogCommand}
|
|
261
|
+
*/
|
|
262
|
+
updateDataCatalog(args: UpdateDataCatalogCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDataCatalogCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
263
|
+
/**
|
|
264
|
+
* @see {@link UpdateNamedQueryCommand}
|
|
265
|
+
*/
|
|
266
|
+
updateNamedQuery(args: UpdateNamedQueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateNamedQueryCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
267
|
+
/**
|
|
268
|
+
* @see {@link UpdateNotebookCommand}
|
|
269
|
+
*/
|
|
270
|
+
updateNotebook(args: UpdateNotebookCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateNotebookCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
271
|
+
/**
|
|
272
|
+
* @see {@link UpdateNotebookMetadataCommand}
|
|
273
|
+
*/
|
|
274
|
+
updateNotebookMetadata(args: UpdateNotebookMetadataCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateNotebookMetadataCommandOutput, SdkError | InternalServerError | InvalidRequestError | TooManyRequestsError>;
|
|
275
|
+
/**
|
|
276
|
+
* @see {@link UpdatePreparedStatementCommand}
|
|
277
|
+
*/
|
|
278
|
+
updatePreparedStatement(args: UpdatePreparedStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePreparedStatementCommandOutput, SdkError | InternalServerError | InvalidRequestError | ResourceNotFoundError>;
|
|
279
|
+
/**
|
|
280
|
+
* @see {@link UpdateWorkGroupCommand}
|
|
281
|
+
*/
|
|
282
|
+
updateWorkGroup(args: UpdateWorkGroupCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateWorkGroupCommandOutput, SdkError | InternalServerError | InvalidRequestError>;
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* @since 1.0.0
|
|
286
|
+
* @category constructors
|
|
287
|
+
*/
|
|
288
|
+
export declare const makeAthenaService: Effect.Effect<AthenaService$, never, Instance.AthenaClientInstance>;
|
|
289
|
+
declare const AthenaService_base: import("effect/Context").TagClass<AthenaService, "@effect-aws/client-athena/AthenaService", AthenaService$> & Effect.Tag.Proxy<AthenaService, AthenaService$> & {
|
|
290
|
+
use: <X>(body: (_: AthenaService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, AthenaService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, import("effect/Cause").UnknownException, AthenaService> : Effect.Effect<X, never, AthenaService>;
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* @since 1.0.0
|
|
294
|
+
* @category models
|
|
295
|
+
*/
|
|
296
|
+
export declare class AthenaService extends AthenaService_base {
|
|
297
|
+
static readonly defaultLayer: Layer.Layer<AthenaService, never, never>;
|
|
298
|
+
static readonly layer: (config: AthenaService.Config) => Layer.Layer<AthenaService, never, never>;
|
|
299
|
+
static readonly baseLayer: (evaluate: (defaultConfig: AthenaClientConfig) => AthenaClient) => Layer.Layer<AthenaService, never, never>;
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* @since 1.0.0
|
|
303
|
+
*/
|
|
304
|
+
export declare namespace AthenaService {
|
|
305
|
+
/**
|
|
306
|
+
* @since 1.0.0
|
|
307
|
+
*/
|
|
308
|
+
interface Config extends Omit<AthenaClientConfig, "logger"> {
|
|
309
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
export {};
|
|
313
|
+
//# sourceMappingURL=AthenaService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AthenaService.d.ts","sourceRoot":"","sources":["../../src/AthenaService.ts"],"names":[],"mappings":"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"}
|