@aws-sdk/client-redshift-data 3.936.0 → 3.937.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.
@@ -39,6 +39,15 @@ export declare class InternalServerException extends __BaseException {
39
39
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
40
40
  );
41
41
  }
42
+ export declare class ResourceNotFoundException extends __BaseException {
43
+ readonly name: "ResourceNotFoundException";
44
+ readonly $fault: "client";
45
+ Message: string | undefined;
46
+ ResourceId: string | undefined;
47
+ constructor(
48
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
49
+ );
50
+ }
42
51
  export declare class ValidationException extends __BaseException {
43
52
  readonly name: "ValidationException";
44
53
  readonly $fault: "client";
@@ -55,15 +64,6 @@ export declare class DatabaseConnectionException extends __BaseException {
55
64
  opts: __ExceptionOptionType<DatabaseConnectionException, __BaseException>
56
65
  );
57
66
  }
58
- export declare class ResourceNotFoundException extends __BaseException {
59
- readonly name: "ResourceNotFoundException";
60
- readonly $fault: "client";
61
- Message: string | undefined;
62
- ResourceId: string | undefined;
63
- constructor(
64
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
65
- );
66
- }
67
67
  export declare class QueryTimeoutException extends __BaseException {
68
68
  readonly name: "QueryTimeoutException";
69
69
  readonly $fault: "client";
@@ -14,9 +14,9 @@ export interface BatchExecuteStatementInput {
14
14
  StatementName?: string | undefined;
15
15
  WorkgroupName?: string | undefined;
16
16
  ClientToken?: string | undefined;
17
+ ResultFormat?: ResultFormatString | undefined;
17
18
  SessionKeepAliveSeconds?: number | undefined;
18
19
  SessionId?: string | undefined;
19
- ResultFormat?: ResultFormatString | undefined;
20
20
  }
21
21
  export interface BatchExecuteStatementOutput {
22
22
  Id?: string | undefined;
@@ -110,8 +110,8 @@ export interface DescribeStatementResponse {
110
110
  QueryParameters?: SqlParameter[] | undefined;
111
111
  SubStatements?: SubStatementData[] | undefined;
112
112
  WorkgroupName?: string | undefined;
113
- SessionId?: string | undefined;
114
113
  ResultFormat?: ResultFormatString | undefined;
114
+ SessionId?: string | undefined;
115
115
  }
116
116
  export interface DescribeTableRequest {
117
117
  ClusterIdentifier?: string | undefined;
@@ -141,9 +141,9 @@ export interface ExecuteStatementInput {
141
141
  Parameters?: SqlParameter[] | undefined;
142
142
  WorkgroupName?: string | undefined;
143
143
  ClientToken?: string | undefined;
144
+ ResultFormat?: ResultFormatString | undefined;
144
145
  SessionKeepAliveSeconds?: number | undefined;
145
146
  SessionId?: string | undefined;
146
- ResultFormat?: ResultFormatString | undefined;
147
147
  }
148
148
  export interface ExecuteStatementOutput {
149
149
  Id?: string | undefined;
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.936.0",
4
+ "version": "3.937.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-redshift-data",