@aws-sdk/client-redshift-data 3.296.0 → 3.298.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.
Files changed (45) hide show
  1. package/dist-cjs/commands/BatchExecuteStatementCommand.js +2 -3
  2. package/dist-cjs/commands/CancelStatementCommand.js +2 -3
  3. package/dist-cjs/commands/DescribeStatementCommand.js +2 -3
  4. package/dist-cjs/commands/DescribeTableCommand.js +2 -3
  5. package/dist-cjs/commands/ExecuteStatementCommand.js +2 -3
  6. package/dist-cjs/commands/GetStatementResultCommand.js +2 -3
  7. package/dist-cjs/commands/ListDatabasesCommand.js +2 -3
  8. package/dist-cjs/commands/ListSchemasCommand.js +2 -3
  9. package/dist-cjs/commands/ListStatementsCommand.js +2 -3
  10. package/dist-cjs/commands/ListTablesCommand.js +2 -3
  11. package/dist-cjs/models/models_0.js +1 -119
  12. package/dist-es/commands/BatchExecuteStatementCommand.js +2 -3
  13. package/dist-es/commands/CancelStatementCommand.js +2 -3
  14. package/dist-es/commands/DescribeStatementCommand.js +2 -3
  15. package/dist-es/commands/DescribeTableCommand.js +2 -3
  16. package/dist-es/commands/ExecuteStatementCommand.js +2 -3
  17. package/dist-es/commands/GetStatementResultCommand.js +2 -3
  18. package/dist-es/commands/ListDatabasesCommand.js +2 -3
  19. package/dist-es/commands/ListSchemasCommand.js +2 -3
  20. package/dist-es/commands/ListStatementsCommand.js +2 -3
  21. package/dist-es/commands/ListTablesCommand.js +2 -3
  22. package/dist-es/models/models_0.js +0 -92
  23. package/dist-types/RedshiftData.d.ts +11 -0
  24. package/dist-types/RedshiftDataClient.d.ts +24 -4
  25. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +16 -0
  26. package/dist-types/commands/CancelStatementCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeStatementCommand.d.ts +16 -0
  28. package/dist-types/commands/DescribeTableCommand.d.ts +16 -0
  29. package/dist-types/commands/ExecuteStatementCommand.d.ts +16 -0
  30. package/dist-types/commands/GetStatementResultCommand.d.ts +16 -0
  31. package/dist-types/commands/ListDatabasesCommand.d.ts +16 -0
  32. package/dist-types/commands/ListSchemasCommand.d.ts +16 -0
  33. package/dist-types/commands/ListStatementsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListTablesCommand.d.ts +16 -0
  35. package/dist-types/models/RedshiftDataServiceException.d.ts +2 -0
  36. package/dist-types/models/models_0.d.ts +82 -104
  37. package/dist-types/pagination/DescribeTablePaginator.d.ts +3 -0
  38. package/dist-types/pagination/GetStatementResultPaginator.d.ts +3 -0
  39. package/dist-types/pagination/Interfaces.d.ts +3 -0
  40. package/dist-types/pagination/ListDatabasesPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListSchemasPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListStatementsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListTablesPaginator.d.ts +3 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +0 -72
  45. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
5
5
  import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTablesCommand}.
8
10
  */
9
11
  export interface ListTablesCommandInput extends ListTablesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTablesCommand}.
13
17
  */
14
18
  export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the tables in a database. If neither <code>SchemaPattern</code> nor <code>TablePattern</code> are specified, then
18
23
  * all tables in the database are returned.
19
24
  * A token is returned to page through the table list.
@@ -43,6 +48,8 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
43
48
  * const response = await client.send(command);
44
49
  * ```
45
50
  *
51
+ * @param ListTablesCommandInput - {@link ListTablesCommandInput}
52
+ * @returns {@link ListTablesCommandOutput}
46
53
  * @see {@link ListTablesCommandInput} for command's `input` shape.
47
54
  * @see {@link ListTablesCommandOutput} for command's `response` shape.
48
55
  * @see {@link RedshiftDataClientResolvedConfig | config} for RedshiftDataClient's `config` shape.
@@ -61,11 +68,20 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
61
68
  export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, RedshiftDataClientResolvedConfig> {
62
69
  readonly input: ListTablesCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: ListTablesCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from RedshiftData service.
4
6
  */
5
7
  export declare class RedshiftDataServiceException extends __ServiceException {
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { RedshiftDataServiceException as __BaseException } from "./RedshiftDataServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>The number of active statements exceeds the limit.</p>
5
6
  */
6
7
  export declare class ActiveStatementsExceededException extends __BaseException {
@@ -13,6 +14,7 @@ export declare class ActiveStatementsExceededException extends __BaseException {
13
14
  constructor(opts: __ExceptionOptionType<ActiveStatementsExceededException, __BaseException>);
14
15
  }
15
16
  /**
17
+ * @public
16
18
  * <p>An SQL statement encountered an environmental error while running.</p>
17
19
  */
18
20
  export declare class BatchExecuteStatementException extends __BaseException {
@@ -28,6 +30,9 @@ export declare class BatchExecuteStatementException extends __BaseException {
28
30
  */
29
31
  constructor(opts: __ExceptionOptionType<BatchExecuteStatementException, __BaseException>);
30
32
  }
33
+ /**
34
+ * @public
35
+ */
31
36
  export interface BatchExecuteStatementInput {
32
37
  /**
33
38
  * <p>One or more SQL statements to run.
@@ -70,6 +75,9 @@ export interface BatchExecuteStatementInput {
70
75
  */
71
76
  ClientToken?: string;
72
77
  }
78
+ /**
79
+ * @public
80
+ */
73
81
  export interface BatchExecuteStatementOutput {
74
82
  /**
75
83
  * <p>The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
@@ -102,6 +110,7 @@ export interface BatchExecuteStatementOutput {
102
110
  WorkgroupName?: string;
103
111
  }
104
112
  /**
113
+ * @public
105
114
  * <p>The Amazon Redshift Data API operation failed due to invalid input. </p>
106
115
  */
107
116
  export declare class ValidationException extends __BaseException {
@@ -116,6 +125,9 @@ export declare class ValidationException extends __BaseException {
116
125
  */
117
126
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
118
127
  }
128
+ /**
129
+ * @public
130
+ */
119
131
  export interface CancelStatementRequest {
120
132
  /**
121
133
  * <p>The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
@@ -123,6 +135,9 @@ export interface CancelStatementRequest {
123
135
  */
124
136
  Id: string | undefined;
125
137
  }
138
+ /**
139
+ * @public
140
+ */
126
141
  export interface CancelStatementResponse {
127
142
  /**
128
143
  * <p>A value that indicates whether the cancel statement succeeded (true). </p>
@@ -130,6 +145,7 @@ export interface CancelStatementResponse {
130
145
  Status?: boolean;
131
146
  }
132
147
  /**
148
+ * @public
133
149
  * <p>Connection to a database failed.</p>
134
150
  */
135
151
  export declare class DatabaseConnectionException extends __BaseException {
@@ -142,6 +158,7 @@ export declare class DatabaseConnectionException extends __BaseException {
142
158
  constructor(opts: __ExceptionOptionType<DatabaseConnectionException, __BaseException>);
143
159
  }
144
160
  /**
161
+ * @public
145
162
  * <p>The Amazon Redshift Data API operation failed due to invalid input. </p>
146
163
  */
147
164
  export declare class InternalServerException extends __BaseException {
@@ -157,6 +174,7 @@ export declare class InternalServerException extends __BaseException {
157
174
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
158
175
  }
159
176
  /**
177
+ * @public
160
178
  * <p>The Amazon Redshift Data API operation failed due to a missing resource. </p>
161
179
  */
162
180
  export declare class ResourceNotFoundException extends __BaseException {
@@ -176,6 +194,7 @@ export declare class ResourceNotFoundException extends __BaseException {
176
194
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
177
195
  }
178
196
  /**
197
+ * @public
179
198
  * <p>The properties (metadata) of a column. </p>
180
199
  */
181
200
  export interface ColumnMetadata {
@@ -232,6 +251,9 @@ export interface ColumnMetadata {
232
251
  */
233
252
  columnDefault?: string;
234
253
  }
254
+ /**
255
+ * @public
256
+ */
235
257
  export interface DescribeStatementRequest {
236
258
  /**
237
259
  * <p>The identifier of the SQL statement to describe. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
@@ -242,6 +264,7 @@ export interface DescribeStatementRequest {
242
264
  Id: string | undefined;
243
265
  }
244
266
  /**
267
+ * @public
245
268
  * <p>A parameter used in a SQL statement.</p>
246
269
  */
247
270
  export interface SqlParameter {
@@ -257,6 +280,9 @@ export interface SqlParameter {
257
280
  */
258
281
  value: string | undefined;
259
282
  }
283
+ /**
284
+ * @public
285
+ */
260
286
  export declare enum StatusString {
261
287
  ABORTED = "ABORTED",
262
288
  ALL = "ALL",
@@ -266,6 +292,9 @@ export declare enum StatusString {
266
292
  STARTED = "STARTED",
267
293
  SUBMITTED = "SUBMITTED"
268
294
  }
295
+ /**
296
+ * @public
297
+ */
269
298
  export declare enum StatementStatusString {
270
299
  ABORTED = "ABORTED",
271
300
  FAILED = "FAILED",
@@ -275,6 +304,7 @@ export declare enum StatementStatusString {
275
304
  SUBMITTED = "SUBMITTED"
276
305
  }
277
306
  /**
307
+ * @public
278
308
  * <p>Information about an SQL statement.</p>
279
309
  */
280
310
  export interface SubStatementData {
@@ -329,6 +359,9 @@ export interface SubStatementData {
329
359
  */
330
360
  HasResultSet?: boolean;
331
361
  }
362
+ /**
363
+ * @public
364
+ */
332
365
  export interface DescribeStatementResponse {
333
366
  /**
334
367
  * <p>The identifier of the SQL statement described. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. </p>
@@ -435,6 +468,9 @@ export interface DescribeStatementResponse {
435
468
  */
436
469
  WorkgroupName?: string;
437
470
  }
471
+ /**
472
+ * @public
473
+ */
438
474
  export interface DescribeTableRequest {
439
475
  /**
440
476
  * <p>The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials. </p>
@@ -480,6 +516,9 @@ export interface DescribeTableRequest {
480
516
  */
481
517
  WorkgroupName?: string;
482
518
  }
519
+ /**
520
+ * @public
521
+ */
483
522
  export interface DescribeTableResponse {
484
523
  /**
485
524
  * <p>The table name. </p>
@@ -495,6 +534,7 @@ export interface DescribeTableResponse {
495
534
  NextToken?: string;
496
535
  }
497
536
  /**
537
+ * @public
498
538
  * <p>The SQL statement encountered an environmental error while running.</p>
499
539
  */
500
540
  export declare class ExecuteStatementException extends __BaseException {
@@ -513,6 +553,9 @@ export declare class ExecuteStatementException extends __BaseException {
513
553
  */
514
554
  constructor(opts: __ExceptionOptionType<ExecuteStatementException, __BaseException>);
515
555
  }
556
+ /**
557
+ * @public
558
+ */
516
559
  export interface ExecuteStatementInput {
517
560
  /**
518
561
  * <p>The SQL statement text to run. </p>
@@ -555,6 +598,9 @@ export interface ExecuteStatementInput {
555
598
  */
556
599
  ClientToken?: string;
557
600
  }
601
+ /**
602
+ * @public
603
+ */
558
604
  export interface ExecuteStatementOutput {
559
605
  /**
560
606
  * <p>The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. </p>
@@ -586,9 +632,13 @@ export interface ExecuteStatementOutput {
586
632
  WorkgroupName?: string;
587
633
  }
588
634
  /**
635
+ * @public
589
636
  * <p>A data value in a column. </p>
590
637
  */
591
638
  export type Field = Field.BlobValueMember | Field.BooleanValueMember | Field.DoubleValueMember | Field.IsNullMember | Field.LongValueMember | Field.StringValueMember | Field.$UnknownMember;
639
+ /**
640
+ * @public
641
+ */
592
642
  export declare namespace Field {
593
643
  /**
594
644
  * <p>A value that indicates whether the data is NULL. </p>
@@ -682,6 +732,9 @@ export declare namespace Field {
682
732
  }
683
733
  const visit: <T>(value: Field, visitor: Visitor<T>) => T;
684
734
  }
735
+ /**
736
+ * @public
737
+ */
685
738
  export interface GetStatementResultRequest {
686
739
  /**
687
740
  * <p>The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
@@ -695,6 +748,9 @@ export interface GetStatementResultRequest {
695
748
  */
696
749
  NextToken?: string;
697
750
  }
751
+ /**
752
+ * @public
753
+ */
698
754
  export interface GetStatementResultResponse {
699
755
  /**
700
756
  * <p>The results of the SQL statement.</p>
@@ -714,6 +770,9 @@ export interface GetStatementResultResponse {
714
770
  */
715
771
  NextToken?: string;
716
772
  }
773
+ /**
774
+ * @public
775
+ */
717
776
  export interface ListDatabasesRequest {
718
777
  /**
719
778
  * <p>The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials. </p>
@@ -745,6 +804,9 @@ export interface ListDatabasesRequest {
745
804
  */
746
805
  WorkgroupName?: string;
747
806
  }
807
+ /**
808
+ * @public
809
+ */
748
810
  export interface ListDatabasesResponse {
749
811
  /**
750
812
  * <p>The names of databases. </p>
@@ -755,6 +817,9 @@ export interface ListDatabasesResponse {
755
817
  */
756
818
  NextToken?: string;
757
819
  }
820
+ /**
821
+ * @public
822
+ */
758
823
  export interface ListSchemasRequest {
759
824
  /**
760
825
  * <p>The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials. </p>
@@ -797,6 +862,9 @@ export interface ListSchemasRequest {
797
862
  */
798
863
  WorkgroupName?: string;
799
864
  }
865
+ /**
866
+ * @public
867
+ */
800
868
  export interface ListSchemasResponse {
801
869
  /**
802
870
  * <p>The schemas that match the request pattern. </p>
@@ -807,6 +875,9 @@ export interface ListSchemasResponse {
807
875
  */
808
876
  NextToken?: string;
809
877
  }
878
+ /**
879
+ * @public
880
+ */
810
881
  export interface ListStatementsRequest {
811
882
  /**
812
883
  * <p>A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request. </p>
@@ -858,6 +929,7 @@ export interface ListStatementsRequest {
858
929
  RoleLevel?: boolean;
859
930
  }
860
931
  /**
932
+ * @public
861
933
  * <p>The SQL statement to run.</p>
862
934
  */
863
935
  export interface StatementData {
@@ -904,6 +976,9 @@ export interface StatementData {
904
976
  */
905
977
  IsBatchStatement?: boolean;
906
978
  }
979
+ /**
980
+ * @public
981
+ */
907
982
  export interface ListStatementsResponse {
908
983
  /**
909
984
  * <p>The SQL statements. </p>
@@ -914,6 +989,9 @@ export interface ListStatementsResponse {
914
989
  */
915
990
  NextToken?: string;
916
991
  }
992
+ /**
993
+ * @public
994
+ */
917
995
  export interface ListTablesRequest {
918
996
  /**
919
997
  * <p>The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials. </p>
@@ -967,6 +1045,7 @@ export interface ListTablesRequest {
967
1045
  WorkgroupName?: string;
968
1046
  }
969
1047
  /**
1048
+ * @public
970
1049
  * <p>The properties of a table. </p>
971
1050
  */
972
1051
  export interface TableMember {
@@ -984,6 +1063,9 @@ export interface TableMember {
984
1063
  */
985
1064
  schema?: string;
986
1065
  }
1066
+ /**
1067
+ * @public
1068
+ */
987
1069
  export interface ListTablesResponse {
988
1070
  /**
989
1071
  * <p>The tables that match the request pattern. </p>
@@ -994,107 +1076,3 @@ export interface ListTablesResponse {
994
1076
  */
995
1077
  NextToken?: string;
996
1078
  }
997
- /**
998
- * @internal
999
- */
1000
- export declare const BatchExecuteStatementInputFilterSensitiveLog: (obj: BatchExecuteStatementInput) => any;
1001
- /**
1002
- * @internal
1003
- */
1004
- export declare const BatchExecuteStatementOutputFilterSensitiveLog: (obj: BatchExecuteStatementOutput) => any;
1005
- /**
1006
- * @internal
1007
- */
1008
- export declare const CancelStatementRequestFilterSensitiveLog: (obj: CancelStatementRequest) => any;
1009
- /**
1010
- * @internal
1011
- */
1012
- export declare const CancelStatementResponseFilterSensitiveLog: (obj: CancelStatementResponse) => any;
1013
- /**
1014
- * @internal
1015
- */
1016
- export declare const ColumnMetadataFilterSensitiveLog: (obj: ColumnMetadata) => any;
1017
- /**
1018
- * @internal
1019
- */
1020
- export declare const DescribeStatementRequestFilterSensitiveLog: (obj: DescribeStatementRequest) => any;
1021
- /**
1022
- * @internal
1023
- */
1024
- export declare const SqlParameterFilterSensitiveLog: (obj: SqlParameter) => any;
1025
- /**
1026
- * @internal
1027
- */
1028
- export declare const SubStatementDataFilterSensitiveLog: (obj: SubStatementData) => any;
1029
- /**
1030
- * @internal
1031
- */
1032
- export declare const DescribeStatementResponseFilterSensitiveLog: (obj: DescribeStatementResponse) => any;
1033
- /**
1034
- * @internal
1035
- */
1036
- export declare const DescribeTableRequestFilterSensitiveLog: (obj: DescribeTableRequest) => any;
1037
- /**
1038
- * @internal
1039
- */
1040
- export declare const DescribeTableResponseFilterSensitiveLog: (obj: DescribeTableResponse) => any;
1041
- /**
1042
- * @internal
1043
- */
1044
- export declare const ExecuteStatementInputFilterSensitiveLog: (obj: ExecuteStatementInput) => any;
1045
- /**
1046
- * @internal
1047
- */
1048
- export declare const ExecuteStatementOutputFilterSensitiveLog: (obj: ExecuteStatementOutput) => any;
1049
- /**
1050
- * @internal
1051
- */
1052
- export declare const FieldFilterSensitiveLog: (obj: Field) => any;
1053
- /**
1054
- * @internal
1055
- */
1056
- export declare const GetStatementResultRequestFilterSensitiveLog: (obj: GetStatementResultRequest) => any;
1057
- /**
1058
- * @internal
1059
- */
1060
- export declare const GetStatementResultResponseFilterSensitiveLog: (obj: GetStatementResultResponse) => any;
1061
- /**
1062
- * @internal
1063
- */
1064
- export declare const ListDatabasesRequestFilterSensitiveLog: (obj: ListDatabasesRequest) => any;
1065
- /**
1066
- * @internal
1067
- */
1068
- export declare const ListDatabasesResponseFilterSensitiveLog: (obj: ListDatabasesResponse) => any;
1069
- /**
1070
- * @internal
1071
- */
1072
- export declare const ListSchemasRequestFilterSensitiveLog: (obj: ListSchemasRequest) => any;
1073
- /**
1074
- * @internal
1075
- */
1076
- export declare const ListSchemasResponseFilterSensitiveLog: (obj: ListSchemasResponse) => any;
1077
- /**
1078
- * @internal
1079
- */
1080
- export declare const ListStatementsRequestFilterSensitiveLog: (obj: ListStatementsRequest) => any;
1081
- /**
1082
- * @internal
1083
- */
1084
- export declare const StatementDataFilterSensitiveLog: (obj: StatementData) => any;
1085
- /**
1086
- * @internal
1087
- */
1088
- export declare const ListStatementsResponseFilterSensitiveLog: (obj: ListStatementsResponse) => any;
1089
- /**
1090
- * @internal
1091
- */
1092
- export declare const ListTablesRequestFilterSensitiveLog: (obj: ListTablesRequest) => any;
1093
- /**
1094
- * @internal
1095
- */
1096
- export declare const TableMemberFilterSensitiveLog: (obj: TableMember) => any;
1097
- /**
1098
- * @internal
1099
- */
1100
- export declare const ListTablesResponseFilterSensitiveLog: (obj: ListTablesResponse) => any;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeTableCommandInput, DescribeTableCommandOutput } from "../commands/DescribeTableCommand";
3
3
  import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeTable(config: RedshiftDataPaginationConfiguration, input: DescribeTableCommandInput, ...additionalArguments: any): Paginator<DescribeTableCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { GetStatementResultCommandInput, GetStatementResultCommandOutput } from "../commands/GetStatementResultCommand";
3
3
  import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateGetStatementResult(config: RedshiftDataPaginationConfiguration, input: GetStatementResultCommandInput, ...additionalArguments: any): Paginator<GetStatementResultCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { RedshiftDataClient } from "../RedshiftDataClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface RedshiftDataPaginationConfiguration extends PaginationConfiguration {
4
7
  client: RedshiftDataClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
3
3
  import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListDatabases(config: RedshiftDataPaginationConfiguration, input: ListDatabasesCommandInput, ...additionalArguments: any): Paginator<ListDatabasesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand";
3
3
  import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSchemas(config: RedshiftDataPaginationConfiguration, input: ListSchemasCommandInput, ...additionalArguments: any): Paginator<ListSchemasCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListStatementsCommandInput, ListStatementsCommandOutput } from "../commands/ListStatementsCommand";
3
3
  import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListStatements(config: RedshiftDataPaginationConfiguration, input: ListStatementsCommandInput, ...additionalArguments: any): Paginator<ListStatementsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
3
3
  import { RedshiftDataPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTables(config: RedshiftDataPaginationConfiguration, input: ListTablesCommandInput, ...additionalArguments: any): Paginator<ListTablesCommandOutput>;
@@ -364,75 +364,3 @@ export interface ListTablesResponse {
364
364
  Tables?: TableMember[];
365
365
  NextToken?: string;
366
366
  }
367
- export declare const BatchExecuteStatementInputFilterSensitiveLog: (
368
- obj: BatchExecuteStatementInput
369
- ) => any;
370
- export declare const BatchExecuteStatementOutputFilterSensitiveLog: (
371
- obj: BatchExecuteStatementOutput
372
- ) => any;
373
- export declare const CancelStatementRequestFilterSensitiveLog: (
374
- obj: CancelStatementRequest
375
- ) => any;
376
- export declare const CancelStatementResponseFilterSensitiveLog: (
377
- obj: CancelStatementResponse
378
- ) => any;
379
- export declare const ColumnMetadataFilterSensitiveLog: (
380
- obj: ColumnMetadata
381
- ) => any;
382
- export declare const DescribeStatementRequestFilterSensitiveLog: (
383
- obj: DescribeStatementRequest
384
- ) => any;
385
- export declare const SqlParameterFilterSensitiveLog: (obj: SqlParameter) => any;
386
- export declare const SubStatementDataFilterSensitiveLog: (
387
- obj: SubStatementData
388
- ) => any;
389
- export declare const DescribeStatementResponseFilterSensitiveLog: (
390
- obj: DescribeStatementResponse
391
- ) => any;
392
- export declare const DescribeTableRequestFilterSensitiveLog: (
393
- obj: DescribeTableRequest
394
- ) => any;
395
- export declare const DescribeTableResponseFilterSensitiveLog: (
396
- obj: DescribeTableResponse
397
- ) => any;
398
- export declare const ExecuteStatementInputFilterSensitiveLog: (
399
- obj: ExecuteStatementInput
400
- ) => any;
401
- export declare const ExecuteStatementOutputFilterSensitiveLog: (
402
- obj: ExecuteStatementOutput
403
- ) => any;
404
- export declare const FieldFilterSensitiveLog: (obj: Field) => any;
405
- export declare const GetStatementResultRequestFilterSensitiveLog: (
406
- obj: GetStatementResultRequest
407
- ) => any;
408
- export declare const GetStatementResultResponseFilterSensitiveLog: (
409
- obj: GetStatementResultResponse
410
- ) => any;
411
- export declare const ListDatabasesRequestFilterSensitiveLog: (
412
- obj: ListDatabasesRequest
413
- ) => any;
414
- export declare const ListDatabasesResponseFilterSensitiveLog: (
415
- obj: ListDatabasesResponse
416
- ) => any;
417
- export declare const ListSchemasRequestFilterSensitiveLog: (
418
- obj: ListSchemasRequest
419
- ) => any;
420
- export declare const ListSchemasResponseFilterSensitiveLog: (
421
- obj: ListSchemasResponse
422
- ) => any;
423
- export declare const ListStatementsRequestFilterSensitiveLog: (
424
- obj: ListStatementsRequest
425
- ) => any;
426
- export declare const StatementDataFilterSensitiveLog: (
427
- obj: StatementData
428
- ) => any;
429
- export declare const ListStatementsResponseFilterSensitiveLog: (
430
- obj: ListStatementsResponse
431
- ) => any;
432
- export declare const ListTablesRequestFilterSensitiveLog: (
433
- obj: ListTablesRequest
434
- ) => any;
435
- export declare const TableMemberFilterSensitiveLog: (obj: TableMember) => any;
436
- export declare const ListTablesResponseFilterSensitiveLog: (
437
- obj: ListTablesResponse
438
- ) => any;
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.296.0",
4
+ "version": "3.298.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",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo redshift-data"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",