cdk-lambda-subminute 2.0.486 → 2.0.487

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.
@@ -101,11 +101,11 @@ declare namespace RedshiftData {
101
101
  /**
102
102
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
103
103
  */
104
- ClusterIdentifier?: Location;
104
+ ClusterIdentifier?: ClusterIdentifierString;
105
105
  /**
106
106
  * The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
107
107
  */
108
- Database: String;
108
+ Database?: String;
109
109
  /**
110
110
  * The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials.
111
111
  */
@@ -114,6 +114,14 @@ declare namespace RedshiftData {
114
114
  * The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
115
115
  */
116
116
  SecretArn?: SecretArn;
117
+ /**
118
+ * The session identifier of the query.
119
+ */
120
+ SessionId?: UUID;
121
+ /**
122
+ * The number of seconds to keep the session alive after the query finishes. The maximum time a session can keep alive is 24 hours. After 24 hours, the session is forced closed and the query is terminated.
123
+ */
124
+ SessionKeepAliveSeconds?: SessionAliveSeconds;
117
125
  /**
118
126
  * One or more SQL statements to run. The SQL statements are run as a single transaction. They run serially in the order of the array. Subsequent SQL statements don't start until the previous statement in the array completes. If any SQL statement fails, then because they are run as one transaction, all work is rolled back.</p>
119
127
  */
@@ -135,7 +143,7 @@ declare namespace RedshiftData {
135
143
  /**
136
144
  * The cluster identifier. This element is not returned when connecting to a serverless workgroup.
137
145
  */
138
- ClusterIdentifier?: Location;
146
+ ClusterIdentifier?: ClusterIdentifierString;
139
147
  /**
140
148
  * The date and time (UTC) the statement was created.
141
149
  */
@@ -144,6 +152,10 @@ declare namespace RedshiftData {
144
152
  * The name of the database.
145
153
  */
146
154
  Database?: String;
155
+ /**
156
+ * A list of colon (:) separated names of database groups.
157
+ */
158
+ DbGroups?: DbGroupList;
147
159
  /**
148
160
  * The database user name.
149
161
  */
@@ -151,11 +163,15 @@ declare namespace RedshiftData {
151
163
  /**
152
164
  * 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. This identifier is returned by BatchExecuteStatment.
153
165
  */
154
- Id?: StatementId;
166
+ Id?: UUID;
155
167
  /**
156
168
  * The name or ARN of the secret that enables access to the database.
157
169
  */
158
170
  SecretArn?: SecretArn;
171
+ /**
172
+ * The session identifier of the query.
173
+ */
174
+ SessionId?: UUID;
159
175
  /**
160
176
  * The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
161
177
  */
@@ -170,7 +186,7 @@ declare namespace RedshiftData {
170
186
  /**
171
187
  * The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by BatchExecuteStatment, ExecuteStatment, and ListStatements.
172
188
  */
173
- Id: StatementId;
189
+ Id: UUID;
174
190
  }
175
191
  export interface CancelStatementResponse {
176
192
  /**
@@ -179,6 +195,7 @@ declare namespace RedshiftData {
179
195
  Status?: Boolean;
180
196
  }
181
197
  export type ClientToken = string;
198
+ export type ClusterIdentifierString = string;
182
199
  export type ColumnList = ColumnMetadata[];
183
200
  export interface ColumnMetadata {
184
201
  /**
@@ -236,11 +253,12 @@ declare namespace RedshiftData {
236
253
  }
237
254
  export type ColumnMetadataList = ColumnMetadata[];
238
255
  export type DatabaseList = String[];
256
+ export type DbGroupList = String[];
239
257
  export interface DescribeStatementRequest {
240
258
  /**
241
259
  * The identifier of the SQL statement to describe. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates the number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query. This identifier is returned by BatchExecuteStatment, ExecuteStatement, and ListStatements.
242
260
  */
243
- Id: StatementId;
261
+ Id: UUID;
244
262
  }
245
263
  export interface DescribeStatementResponse {
246
264
  /**
@@ -274,7 +292,7 @@ declare namespace RedshiftData {
274
292
  /**
275
293
  * The identifier of the SQL statement described. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
276
294
  */
277
- Id: StatementId;
295
+ Id: UUID;
278
296
  /**
279
297
  * The parameters for the SQL statement.
280
298
  */
@@ -303,6 +321,10 @@ declare namespace RedshiftData {
303
321
  * The name or Amazon Resource Name (ARN) of the secret that enables access to the database.
304
322
  */
305
323
  SecretArn?: SecretArn;
324
+ /**
325
+ * The session identifier of the query.
326
+ */
327
+ SessionId?: String;
306
328
  /**
307
329
  * The status of the SQL statement being described. Status values are defined as follows: ABORTED - The query run was stopped by the user. ALL - A status value that includes all query statuses. This value can be used to filter results. FAILED - The query run failed. FINISHED - The query has finished running. PICKED - The query has been chosen to be run. STARTED - The query run has started. SUBMITTED - The query was submitted, but not yet processed.
308
330
  */
@@ -324,7 +346,7 @@ declare namespace RedshiftData {
324
346
  /**
325
347
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
326
348
  */
327
- ClusterIdentifier?: Location;
349
+ ClusterIdentifier?: ClusterIdentifierString;
328
350
  /**
329
351
  * A database name. The connected database is specified when you connect with your authentication credentials.
330
352
  */
@@ -384,11 +406,11 @@ declare namespace RedshiftData {
384
406
  /**
385
407
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
386
408
  */
387
- ClusterIdentifier?: Location;
409
+ ClusterIdentifier?: ClusterIdentifierString;
388
410
  /**
389
411
  * The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
390
412
  */
391
- Database: String;
413
+ Database?: String;
392
414
  /**
393
415
  * The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials.
394
416
  */
@@ -401,6 +423,14 @@ declare namespace RedshiftData {
401
423
  * The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
402
424
  */
403
425
  SecretArn?: SecretArn;
426
+ /**
427
+ * The session identifier of the query.
428
+ */
429
+ SessionId?: UUID;
430
+ /**
431
+ * The number of seconds to keep the session alive after the query finishes. The maximum time a session can keep alive is 24 hours. After 24 hours, the session is forced closed and the query is terminated.
432
+ */
433
+ SessionKeepAliveSeconds?: SessionAliveSeconds;
404
434
  /**
405
435
  * The SQL statement text to run.
406
436
  */
@@ -422,7 +452,7 @@ declare namespace RedshiftData {
422
452
  /**
423
453
  * The cluster identifier. This element is not returned when connecting to a serverless workgroup.
424
454
  */
425
- ClusterIdentifier?: Location;
455
+ ClusterIdentifier?: ClusterIdentifierString;
426
456
  /**
427
457
  * The date and time (UTC) the statement was created.
428
458
  */
@@ -431,6 +461,10 @@ declare namespace RedshiftData {
431
461
  * The name of the database.
432
462
  */
433
463
  Database?: String;
464
+ /**
465
+ * A list of colon (:) separated names of database groups.
466
+ */
467
+ DbGroups?: DbGroupList;
434
468
  /**
435
469
  * The database user name.
436
470
  */
@@ -438,11 +472,15 @@ declare namespace RedshiftData {
438
472
  /**
439
473
  * 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.
440
474
  */
441
- Id?: StatementId;
475
+ Id?: UUID;
442
476
  /**
443
477
  * The name or ARN of the secret that enables access to the database.
444
478
  */
445
479
  SecretArn?: SecretArn;
480
+ /**
481
+ * The session identifier of the query.
482
+ */
483
+ SessionId?: UUID;
446
484
  /**
447
485
  * The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
448
486
  */
@@ -479,7 +517,7 @@ declare namespace RedshiftData {
479
517
  /**
480
518
  * 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. A suffix indicates then number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query. This identifier is returned by BatchExecuteStatment, ExecuteStatment, and ListStatements.
481
519
  */
482
- Id: StatementId;
520
+ Id: UUID;
483
521
  /**
484
522
  * 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.
485
523
  */
@@ -508,7 +546,7 @@ declare namespace RedshiftData {
508
546
  /**
509
547
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
510
548
  */
511
- ClusterIdentifier?: Location;
549
+ ClusterIdentifier?: ClusterIdentifierString;
512
550
  /**
513
551
  * The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
514
552
  */
@@ -548,7 +586,7 @@ declare namespace RedshiftData {
548
586
  /**
549
587
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
550
588
  */
551
- ClusterIdentifier?: Location;
589
+ ClusterIdentifier?: ClusterIdentifierString;
552
590
  /**
553
591
  * A database name. The connected database is specified when you connect with your authentication credentials.
554
592
  */
@@ -629,7 +667,7 @@ declare namespace RedshiftData {
629
667
  /**
630
668
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
631
669
  */
632
- ClusterIdentifier?: Location;
670
+ ClusterIdentifier?: ClusterIdentifierString;
633
671
  /**
634
672
  * A database name. The connected database is specified when you connect with your authentication credentials.
635
673
  */
@@ -677,13 +715,13 @@ declare namespace RedshiftData {
677
715
  */
678
716
  Tables?: TableList;
679
717
  }
680
- export type Location = string;
681
718
  export type Long = number;
682
719
  export type PageSize = number;
683
720
  export type ParameterName = string;
684
721
  export type ParameterValue = string;
685
722
  export type SchemaList = String[];
686
723
  export type SecretArn = string;
724
+ export type SessionAliveSeconds = number;
687
725
  export type SqlList = StatementString[];
688
726
  export interface SqlParameter {
689
727
  /**
@@ -705,7 +743,7 @@ declare namespace RedshiftData {
705
743
  /**
706
744
  * The SQL statement identifier. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
707
745
  */
708
- Id: StatementId;
746
+ Id: UUID;
709
747
  /**
710
748
  * A value that indicates whether the statement is a batch query request.
711
749
  */
@@ -726,6 +764,10 @@ declare namespace RedshiftData {
726
764
  * The name or Amazon Resource Name (ARN) of the secret that enables access to the database.
727
765
  */
728
766
  SecretArn?: SecretArn;
767
+ /**
768
+ * The session identifier of the query.
769
+ */
770
+ SessionId?: UUID;
729
771
  /**
730
772
  * The name of the SQL statement.
731
773
  */
@@ -739,7 +781,6 @@ declare namespace RedshiftData {
739
781
  */
740
782
  UpdatedAt?: Timestamp;
741
783
  }
742
- export type StatementId = string;
743
784
  export type StatementList = StatementData[];
744
785
  export type StatementNameString = string;
745
786
  export type StatementStatusString = "SUBMITTED"|"PICKED"|"STARTED"|"FINISHED"|"ABORTED"|"FAILED"|string;
@@ -767,7 +808,7 @@ declare namespace RedshiftData {
767
808
  /**
768
809
  * The identifier of the SQL statement. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates the number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query.
769
810
  */
770
- Id: StatementId;
811
+ Id: UUID;
771
812
  /**
772
813
  * The SQL statement text.
773
814
  */
@@ -810,6 +851,7 @@ declare namespace RedshiftData {
810
851
  type?: String;
811
852
  }
812
853
  export type Timestamp = Date;
854
+ export type UUID = string;
813
855
  export type WorkgroupNameString = string;
814
856
  export type bool = boolean;
815
857
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1686.0',
86
+ VERSION: '2.1687.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -5739,6 +5739,7 @@ return /******/ (function(modules) { // webpackBootstrap
5739
5739
  '^us\\-iso\\-\\w+\\-\\d+$': 'c2s.ic.gov',
5740
5740
  '^us\\-isob\\-\\w+\\-\\d+$': 'sc2s.sgov.gov',
5741
5741
  '^eu\\-isoe\\-west\\-1$': 'cloud.adc-e.uk',
5742
+ '^us\\-isof\\-\\w+\\-\\d+$': 'csp.hci.ic.gov',
5742
5743
  };
5743
5744
  var defaultSuffix = 'amazonaws.com';
5744
5745
  var regexes = Object.keys(regionRegexes);