@aws-sdk/client-redshift-data 3.300.0 → 3.301.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-types/commands/BatchExecuteStatementCommand.d.ts +2 -2
- package/dist-types/commands/CancelStatementCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStatementCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTableCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteStatementCommand.d.ts +3 -3
- package/dist-types/commands/GetStatementResultCommand.d.ts +1 -1
- package/dist-types/commands/ListDatabasesCommand.d.ts +1 -1
- package/dist-types/commands/ListSchemasCommand.d.ts +1 -1
- package/dist-types/commands/ListStatementsCommand.d.ts +1 -1
- package/dist-types/commands/ListTablesCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -43,8 +43,8 @@ export interface BatchExecuteStatementCommandOutput extends BatchExecuteStatemen
|
|
|
43
43
|
* import { RedshiftDataClient, BatchExecuteStatementCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
44
44
|
* // const { RedshiftDataClient, BatchExecuteStatementCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
45
45
|
* const client = new RedshiftDataClient(config);
|
|
46
|
-
* const input = {
|
|
47
|
-
* Sqls: [ // required
|
|
46
|
+
* const input = { // BatchExecuteStatementInput
|
|
47
|
+
* Sqls: [ // SqlList // required
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* ClusterIdentifier: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface CancelStatementCommandOutput extends CancelStatementResponse, _
|
|
|
29
29
|
* import { RedshiftDataClient, CancelStatementCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
30
30
|
* // const { RedshiftDataClient, CancelStatementCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
31
31
|
* const client = new RedshiftDataClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CancelStatementRequest
|
|
33
33
|
* Id: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CancelStatementCommand(input);
|
|
@@ -31,7 +31,7 @@ export interface DescribeStatementCommandOutput extends DescribeStatementRespons
|
|
|
31
31
|
* import { RedshiftDataClient, DescribeStatementCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
32
32
|
* // const { RedshiftDataClient, DescribeStatementCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
33
33
|
* const client = new RedshiftDataClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // DescribeStatementRequest
|
|
35
35
|
* Id: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeStatementCommand(input);
|
|
@@ -44,7 +44,7 @@ export interface DescribeTableCommandOutput extends DescribeTableResponse, __Met
|
|
|
44
44
|
* import { RedshiftDataClient, DescribeTableCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
45
45
|
* // const { RedshiftDataClient, DescribeTableCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
46
46
|
* const client = new RedshiftDataClient(config);
|
|
47
|
-
* const input = {
|
|
47
|
+
* const input = { // DescribeTableRequest
|
|
48
48
|
* ClusterIdentifier: "STRING_VALUE",
|
|
49
49
|
* SecretArn: "STRING_VALUE",
|
|
50
50
|
* DbUser: "STRING_VALUE",
|
|
@@ -43,7 +43,7 @@ export interface ExecuteStatementCommandOutput extends ExecuteStatementOutput, _
|
|
|
43
43
|
* import { RedshiftDataClient, ExecuteStatementCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
44
44
|
* // const { RedshiftDataClient, ExecuteStatementCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
45
45
|
* const client = new RedshiftDataClient(config);
|
|
46
|
-
* const input = {
|
|
46
|
+
* const input = { // ExecuteStatementInput
|
|
47
47
|
* Sql: "STRING_VALUE", // required
|
|
48
48
|
* ClusterIdentifier: "STRING_VALUE",
|
|
49
49
|
* SecretArn: "STRING_VALUE",
|
|
@@ -51,8 +51,8 @@ export interface ExecuteStatementCommandOutput extends ExecuteStatementOutput, _
|
|
|
51
51
|
* Database: "STRING_VALUE", // required
|
|
52
52
|
* WithEvent: true || false,
|
|
53
53
|
* StatementName: "STRING_VALUE",
|
|
54
|
-
* Parameters: [
|
|
55
|
-
* {
|
|
54
|
+
* Parameters: [ // SqlParametersList
|
|
55
|
+
* { // SqlParameter
|
|
56
56
|
* name: "STRING_VALUE", // required
|
|
57
57
|
* value: "STRING_VALUE", // required
|
|
58
58
|
* },
|
|
@@ -30,7 +30,7 @@ export interface GetStatementResultCommandOutput extends GetStatementResultRespo
|
|
|
30
30
|
* import { RedshiftDataClient, GetStatementResultCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
31
31
|
* // const { RedshiftDataClient, GetStatementResultCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
32
32
|
* const client = new RedshiftDataClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetStatementResultRequest
|
|
34
34
|
* Id: "STRING_VALUE", // required
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -43,7 +43,7 @@ export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __Met
|
|
|
43
43
|
* import { RedshiftDataClient, ListDatabasesCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
44
44
|
* // const { RedshiftDataClient, ListDatabasesCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
45
45
|
* const client = new RedshiftDataClient(config);
|
|
46
|
-
* const input = {
|
|
46
|
+
* const input = { // ListDatabasesRequest
|
|
47
47
|
* ClusterIdentifier: "STRING_VALUE",
|
|
48
48
|
* Database: "STRING_VALUE", // required
|
|
49
49
|
* SecretArn: "STRING_VALUE",
|
|
@@ -43,7 +43,7 @@ export interface ListSchemasCommandOutput extends ListSchemasResponse, __Metadat
|
|
|
43
43
|
* import { RedshiftDataClient, ListSchemasCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
44
44
|
* // const { RedshiftDataClient, ListSchemasCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
45
45
|
* const client = new RedshiftDataClient(config);
|
|
46
|
-
* const input = {
|
|
46
|
+
* const input = { // ListSchemasRequest
|
|
47
47
|
* ClusterIdentifier: "STRING_VALUE",
|
|
48
48
|
* SecretArn: "STRING_VALUE",
|
|
49
49
|
* DbUser: "STRING_VALUE",
|
|
@@ -30,7 +30,7 @@ export interface ListStatementsCommandOutput extends ListStatementsResponse, __M
|
|
|
30
30
|
* import { RedshiftDataClient, ListStatementsCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
31
31
|
* // const { RedshiftDataClient, ListStatementsCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
32
32
|
* const client = new RedshiftDataClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListStatementsRequest
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
36
|
* StatementName: "STRING_VALUE",
|
|
@@ -44,7 +44,7 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
|
|
|
44
44
|
* import { RedshiftDataClient, ListTablesCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
45
45
|
* // const { RedshiftDataClient, ListTablesCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
46
46
|
* const client = new RedshiftDataClient(config);
|
|
47
|
-
* const input = {
|
|
47
|
+
* const input = { // ListTablesRequest
|
|
48
48
|
* ClusterIdentifier: "STRING_VALUE",
|
|
49
49
|
* SecretArn: "STRING_VALUE",
|
|
50
50
|
* DbUser: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|