@aws-sdk/client-athena 3.477.0 → 3.478.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/dist-cjs/pagination/GetQueryResultsPaginator.js +2 -24
- package/dist-cjs/pagination/ListApplicationDPUSizesPaginator.js +2 -24
- package/dist-cjs/pagination/ListCalculationExecutionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListCapacityReservationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDataCatalogsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDatabasesPaginator.js +2 -24
- package/dist-cjs/pagination/ListEngineVersionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListExecutorsPaginator.js +2 -24
- package/dist-cjs/pagination/ListNamedQueriesPaginator.js +2 -24
- package/dist-cjs/pagination/ListPreparedStatementsPaginator.js +2 -24
- package/dist-cjs/pagination/ListQueryExecutionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListSessionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListTableMetadataPaginator.js +2 -24
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +2 -24
- package/dist-cjs/pagination/ListWorkGroupsPaginator.js +2 -24
- package/dist-es/pagination/GetQueryResultsPaginator.js +2 -23
- package/dist-es/pagination/ListApplicationDPUSizesPaginator.js +2 -23
- package/dist-es/pagination/ListCalculationExecutionsPaginator.js +2 -23
- package/dist-es/pagination/ListCapacityReservationsPaginator.js +2 -23
- package/dist-es/pagination/ListDataCatalogsPaginator.js +2 -23
- package/dist-es/pagination/ListDatabasesPaginator.js +2 -23
- package/dist-es/pagination/ListEngineVersionsPaginator.js +2 -23
- package/dist-es/pagination/ListExecutorsPaginator.js +2 -23
- package/dist-es/pagination/ListNamedQueriesPaginator.js +2 -23
- package/dist-es/pagination/ListPreparedStatementsPaginator.js +2 -23
- package/dist-es/pagination/ListQueryExecutionsPaginator.js +2 -23
- package/dist-es/pagination/ListSessionsPaginator.js +2 -23
- package/dist-es/pagination/ListTableMetadataPaginator.js +2 -23
- package/dist-es/pagination/ListTagsForResourcePaginator.js +2 -23
- package/dist-es/pagination/ListWorkGroupsPaginator.js +2 -23
- package/dist-types/pagination/GetQueryResultsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApplicationDPUSizesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCalculationExecutionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCapacityReservationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDataCatalogsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDatabasesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEngineVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListExecutorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListNamedQueriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPreparedStatementsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListQueryExecutionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTableMetadataPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +1 -1
- package/dist-types/pagination/ListWorkGroupsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListApplicationDPUSizesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCalculationExecutionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCapacityReservationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDataCatalogsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEngineVersionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListExecutorsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListNamedQueriesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPreparedStatementsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListQueryExecutionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListTableMetadataPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListWorkGroupsPaginator.d.ts +3 -3
- package/package.json +6 -5
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListDatabasesCommand, } from "../commands/ListDatabasesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListDatabasesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListDatabases(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListDatabases = createPaginator(AthenaClient, ListDatabasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListEngineVersionsCommand, } from "../commands/ListEngineVersionsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListEngineVersionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListEngineVersions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListEngineVersions = createPaginator(AthenaClient, ListEngineVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListExecutorsCommand, } from "../commands/ListExecutorsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListExecutorsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListExecutors(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListExecutors = createPaginator(AthenaClient, ListExecutorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListNamedQueriesCommand, } from "../commands/ListNamedQueriesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListNamedQueriesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListNamedQueries(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListNamedQueries = createPaginator(AthenaClient, ListNamedQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListPreparedStatementsCommand, } from "../commands/ListPreparedStatementsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListPreparedStatementsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListPreparedStatements(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListPreparedStatements = createPaginator(AthenaClient, ListPreparedStatementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListQueryExecutionsCommand, } from "../commands/ListQueryExecutionsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListQueryExecutionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListQueryExecutions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListQueryExecutions = createPaginator(AthenaClient, ListQueryExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListSessionsCommand, } from "../commands/ListSessionsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListSessionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListSessions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListSessions = createPaginator(AthenaClient, ListSessionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListTableMetadataCommand, } from "../commands/ListTableMetadataCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListTableMetadataCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListTableMetadata(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListTableMetadata = createPaginator(AthenaClient, ListTableMetadataCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListTagsForResourceCommand, } from "../commands/ListTagsForResourceCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListTagsForResourceCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListTagsForResource(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListTagsForResource = createPaginator(AthenaClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AthenaClient } from "../AthenaClient";
|
|
2
3
|
import { ListWorkGroupsCommand, } from "../commands/ListWorkGroupsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListWorkGroupsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListWorkGroups(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AthenaClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected Athena | AthenaClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListWorkGroups = createPaginator(AthenaClient, ListWorkGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetQueryResults: (config: AthenaPaginationConfiguration, input: GetQueryResultsCommandInput, ...rest: any[]) => Paginator<GetQueryResultsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApplicationDPUSizes: (config: AthenaPaginationConfiguration, input: ListApplicationDPUSizesCommandInput, ...rest: any[]) => Paginator<ListApplicationDPUSizesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCalculationExecutions: (config: AthenaPaginationConfiguration, input: ListCalculationExecutionsCommandInput, ...rest: any[]) => Paginator<ListCalculationExecutionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCapacityReservations: (config: AthenaPaginationConfiguration, input: ListCapacityReservationsCommandInput, ...rest: any[]) => Paginator<ListCapacityReservationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDataCatalogs: (config: AthenaPaginationConfiguration, input: ListDataCatalogsCommandInput, ...rest: any[]) => Paginator<ListDataCatalogsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDatabases: (config: AthenaPaginationConfiguration, input: ListDatabasesCommandInput, ...rest: any[]) => Paginator<ListDatabasesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEngineVersions: (config: AthenaPaginationConfiguration, input: ListEngineVersionsCommandInput, ...rest: any[]) => Paginator<ListEngineVersionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListExecutors: (config: AthenaPaginationConfiguration, input: ListExecutorsCommandInput, ...rest: any[]) => Paginator<ListExecutorsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListNamedQueries: (config: AthenaPaginationConfiguration, input: ListNamedQueriesCommandInput, ...rest: any[]) => Paginator<ListNamedQueriesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPreparedStatements: (config: AthenaPaginationConfiguration, input: ListPreparedStatementsCommandInput, ...rest: any[]) => Paginator<ListPreparedStatementsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListQueryExecutions: (config: AthenaPaginationConfiguration, input: ListQueryExecutionsCommandInput, ...rest: any[]) => Paginator<ListQueryExecutionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSessions: (config: AthenaPaginationConfiguration, input: ListSessionsCommandInput, ...rest: any[]) => Paginator<ListSessionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTableMetadata: (config: AthenaPaginationConfiguration, input: ListTableMetadataCommandInput, ...rest: any[]) => Paginator<ListTableMetadataCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTagsForResource: (config: AthenaPaginationConfiguration, input: ListTagsForResourceCommandInput, ...rest: any[]) => Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListWorkGroups: (config: AthenaPaginationConfiguration, input: ListWorkGroupsCommandInput, ...rest: any[]) => Paginator<ListWorkGroupsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
GetQueryResultsCommandOutput,
|
|
5
5
|
} from "../commands/GetQueryResultsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetQueryResults: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: GetQueryResultsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetQueryResultsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListApplicationDPUSizesCommandOutput,
|
|
5
5
|
} from "../commands/ListApplicationDPUSizesCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApplicationDPUSizes: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListApplicationDPUSizesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListApplicationDPUSizesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListCalculationExecutionsCommandOutput,
|
|
5
5
|
} from "../commands/ListCalculationExecutionsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCalculationExecutions: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListCalculationExecutionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCalculationExecutionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListCapacityReservationsCommandOutput,
|
|
5
5
|
} from "../commands/ListCapacityReservationsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCapacityReservations: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListCapacityReservationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCapacityReservationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDataCatalogsCommandOutput,
|
|
5
5
|
} from "../commands/ListDataCatalogsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDataCatalogs: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListDataCatalogsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataCatalogsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDatabasesCommandOutput,
|
|
5
5
|
} from "../commands/ListDatabasesCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDatabases: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListDatabasesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDatabasesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListEngineVersionsCommandOutput,
|
|
5
5
|
} from "../commands/ListEngineVersionsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEngineVersions: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListEngineVersionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngineVersionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListExecutorsCommandOutput,
|
|
5
5
|
} from "../commands/ListExecutorsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListExecutors: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListExecutorsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListExecutorsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListNamedQueriesCommandOutput,
|
|
5
5
|
} from "../commands/ListNamedQueriesCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListNamedQueries: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListNamedQueriesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListNamedQueriesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListPreparedStatementsCommandOutput,
|
|
5
5
|
} from "../commands/ListPreparedStatementsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListPreparedStatements: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListPreparedStatementsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPreparedStatementsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListQueryExecutionsCommandOutput,
|
|
5
5
|
} from "../commands/ListQueryExecutionsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListQueryExecutions: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListQueryExecutionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListQueryExecutionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListSessionsCommandOutput,
|
|
5
5
|
} from "../commands/ListSessionsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSessions: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListSessionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSessionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListTableMetadataCommandOutput,
|
|
5
5
|
} from "../commands/ListTableMetadataCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTableMetadata: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListTableMetadataCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTableMetadataCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListTagsForResourceCommandOutput,
|
|
5
5
|
} from "../commands/ListTagsForResourceCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTagsForResource: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListTagsForResourceCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListWorkGroupsCommandOutput,
|
|
5
5
|
} from "../commands/ListWorkGroupsCommand";
|
|
6
6
|
import { AthenaPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListWorkGroups: (
|
|
8
8
|
config: AthenaPaginationConfiguration,
|
|
9
9
|
input: ListWorkGroupsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListWorkGroupsCommandOutput>;
|