cdk-lambda-subminute 2.0.485 → 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.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +10 -1
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +7 -1
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +1272 -482
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +28 -4
- package/node_modules/aws-sdk/apis/personalize-2018-05-22.min.json +61 -5
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +349 -340
- package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +32 -9
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +8 -1
- package/node_modules/aws-sdk/clients/backup.d.ts +280 -268
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +1 -1
- package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +4 -4
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +41 -10
- package/node_modules/aws-sdk/clients/datazone.d.ts +806 -1
- package/node_modules/aws-sdk/clients/personalize.d.ts +66 -5
- package/node_modules/aws-sdk/clients/quicksight.d.ts +2 -1
- package/node_modules/aws-sdk/clients/redshiftdata.d.ts +62 -20
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +15 -1
- package/node_modules/aws-sdk/clients/wafv2.d.ts +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +93 -12
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +41 -41
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/region_config.js +1 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -116,11 +116,11 @@ declare class Personalize extends Service {
|
|
116
116
|
*/
|
117
117
|
createSchema(callback?: (err: AWSError, data: Personalize.Types.CreateSchemaResponse) => void): Request<Personalize.Types.CreateSchemaResponse, AWSError>;
|
118
118
|
/**
|
119
|
-
*
|
119
|
+
* By default, all new solutions use automatic training. With automatic training, you incur training costs while your solution is active. To avoid unnecessary costs, when you are finished you can update the solution to turn off automatic training. For information about training costs, see Amazon Personalize pricing. Creates the configuration for training a model (creating a solution version). This configuration includes the recipe to use for model training and optional training configuration, such as columns to use in training and feature transformation parameters. For more information about configuring a solution, see Creating and configuring a solution. By default, new solutions use automatic training to create solution versions every 7 days. You can change the training frequency. Automatic solution version creation starts within one hour after the solution is ACTIVE. If you manually create a solution version within the hour, the solution skips the first automatic training. For more information, see Configuring automatic training. To turn off automatic training, set performAutoTraining to false. If you turn off automatic training, you must manually create a solution version by calling the CreateSolutionVersion operation. After training starts, you can get the solution version's Amazon Resource Name (ARN) with the ListSolutionVersions API operation. To get its status, use the DescribeSolutionVersion. After training completes you can evaluate model accuracy by calling GetSolutionMetrics. When you are satisfied with the solution version, you deploy it using CreateCampaign. The campaign provides recommendations to a client through the GetRecommendations API. Amazon Personalize doesn't support configuring the hpoObjective for solution hyperparameter optimization at this time. Status A solution can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED DELETE PENDING > DELETE IN_PROGRESS To get the status of the solution, call DescribeSolution. If you use manual training, the status must be ACTIVE before you call CreateSolutionVersion. Related APIs UpdateSolution ListSolutions CreateSolutionVersion DescribeSolution DeleteSolution ListSolutionVersions DescribeSolutionVersion
|
120
120
|
*/
|
121
121
|
createSolution(params: Personalize.Types.CreateSolutionRequest, callback?: (err: AWSError, data: Personalize.Types.CreateSolutionResponse) => void): Request<Personalize.Types.CreateSolutionResponse, AWSError>;
|
122
122
|
/**
|
123
|
-
*
|
123
|
+
* By default, all new solutions use automatic training. With automatic training, you incur training costs while your solution is active. To avoid unnecessary costs, when you are finished you can update the solution to turn off automatic training. For information about training costs, see Amazon Personalize pricing. Creates the configuration for training a model (creating a solution version). This configuration includes the recipe to use for model training and optional training configuration, such as columns to use in training and feature transformation parameters. For more information about configuring a solution, see Creating and configuring a solution. By default, new solutions use automatic training to create solution versions every 7 days. You can change the training frequency. Automatic solution version creation starts within one hour after the solution is ACTIVE. If you manually create a solution version within the hour, the solution skips the first automatic training. For more information, see Configuring automatic training. To turn off automatic training, set performAutoTraining to false. If you turn off automatic training, you must manually create a solution version by calling the CreateSolutionVersion operation. After training starts, you can get the solution version's Amazon Resource Name (ARN) with the ListSolutionVersions API operation. To get its status, use the DescribeSolutionVersion. After training completes you can evaluate model accuracy by calling GetSolutionMetrics. When you are satisfied with the solution version, you deploy it using CreateCampaign. The campaign provides recommendations to a client through the GetRecommendations API. Amazon Personalize doesn't support configuring the hpoObjective for solution hyperparameter optimization at this time. Status A solution can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED DELETE PENDING > DELETE IN_PROGRESS To get the status of the solution, call DescribeSolution. If you use manual training, the status must be ACTIVE before you call CreateSolutionVersion. Related APIs UpdateSolution ListSolutions CreateSolutionVersion DescribeSolution DeleteSolution ListSolutionVersions DescribeSolutionVersion
|
124
124
|
*/
|
125
125
|
createSolution(callback?: (err: AWSError, data: Personalize.Types.CreateSolutionResponse) => void): Request<Personalize.Types.CreateSolutionResponse, AWSError>;
|
126
126
|
/**
|
@@ -571,6 +571,14 @@ declare class Personalize extends Service {
|
|
571
571
|
* Updates the recommender to modify the recommender configuration. If you update the recommender to modify the columns used in training, Amazon Personalize automatically starts a full retraining of the models backing your recommender. While the update completes, you can still get recommendations from the recommender. The recommender uses the previous configuration until the update completes. To track the status of this update, use the latestRecommenderUpdate returned in the DescribeRecommender operation.
|
572
572
|
*/
|
573
573
|
updateRecommender(callback?: (err: AWSError, data: Personalize.Types.UpdateRecommenderResponse) => void): Request<Personalize.Types.UpdateRecommenderResponse, AWSError>;
|
574
|
+
/**
|
575
|
+
* Updates an Amazon Personalize solution to use a different automatic training configuration. When you update a solution, you can change whether the solution uses automatic training, and you can change the training frequency. For more information about updating a solution, see Updating a solution. A solution update can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED To get the status of a solution update, call the DescribeSolution API operation and find the status in the latestSolutionUpdate.
|
576
|
+
*/
|
577
|
+
updateSolution(params: Personalize.Types.UpdateSolutionRequest, callback?: (err: AWSError, data: Personalize.Types.UpdateSolutionResponse) => void): Request<Personalize.Types.UpdateSolutionResponse, AWSError>;
|
578
|
+
/**
|
579
|
+
* Updates an Amazon Personalize solution to use a different automatic training configuration. When you update a solution, you can change whether the solution uses automatic training, and you can change the training frequency. For more information about updating a solution, see Updating a solution. A solution update can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED To get the status of a solution update, call the DescribeSolution API operation and find the status in the latestSolutionUpdate.
|
580
|
+
*/
|
581
|
+
updateSolution(callback?: (err: AWSError, data: Personalize.Types.UpdateSolutionResponse) => void): Request<Personalize.Types.UpdateSolutionResponse, AWSError>;
|
574
582
|
}
|
575
583
|
declare namespace Personalize {
|
576
584
|
export type AccountId = string;
|
@@ -1404,7 +1412,7 @@ declare namespace Personalize {
|
|
1404
1412
|
*/
|
1405
1413
|
performAutoML?: PerformAutoML;
|
1406
1414
|
/**
|
1407
|
-
* Whether the solution uses automatic training to create new solution versions (trained models). The default is True and the solution automatically creates new solution versions every 7 days. You can change the training frequency by specifying a schedulingExpression in the AutoTrainingConfig as part of solution configuration. For more information about automatic training, see Configuring automatic training. Automatic solution version creation starts one hour after the solution is ACTIVE. If you manually create a solution version within the hour, the solution skips the first automatic training. After training starts, you can get the solution version's Amazon Resource Name (ARN) with the ListSolutionVersions API operation. To get its status, use the DescribeSolutionVersion.
|
1415
|
+
* Whether the solution uses automatic training to create new solution versions (trained models). The default is True and the solution automatically creates new solution versions every 7 days. You can change the training frequency by specifying a schedulingExpression in the AutoTrainingConfig as part of solution configuration. For more information about automatic training, see Configuring automatic training. Automatic solution version creation starts within one hour after the solution is ACTIVE. If you manually create a solution version within the hour, the solution skips the first automatic training. After training starts, you can get the solution version's Amazon Resource Name (ARN) with the ListSolutionVersions API operation. To get its status, use the DescribeSolutionVersion.
|
1408
1416
|
*/
|
1409
1417
|
performAutoTraining?: PerformAutoTraining;
|
1410
1418
|
/**
|
@@ -1420,7 +1428,7 @@ declare namespace Personalize {
|
|
1420
1428
|
*/
|
1421
1429
|
eventType?: EventType;
|
1422
1430
|
/**
|
1423
|
-
* The configuration
|
1431
|
+
* The configuration properties for the solution. When performAutoML is set to true, Amazon Personalize only evaluates the autoMLConfig section of the solution configuration. Amazon Personalize doesn't support configuring the hpoObjective at this time.
|
1424
1432
|
*/
|
1425
1433
|
solutionConfig?: SolutionConfig;
|
1426
1434
|
/**
|
@@ -3191,7 +3199,7 @@ declare namespace Personalize {
|
|
3191
3199
|
*/
|
3192
3200
|
lastUpdatedDateTime?: _Date;
|
3193
3201
|
/**
|
3194
|
-
* The status of the recommender update. A recommender can be in one of the following states:
|
3202
|
+
* The status of the recommender update. A recommender update can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
|
3195
3203
|
*/
|
3196
3204
|
status?: Status;
|
3197
3205
|
/**
|
@@ -3272,6 +3280,10 @@ declare namespace Personalize {
|
|
3272
3280
|
* Describes the latest version of the solution, including the status and the ARN.
|
3273
3281
|
*/
|
3274
3282
|
latestSolutionVersion?: SolutionVersionSummary;
|
3283
|
+
/**
|
3284
|
+
* Provides a summary of the latest updates to the solution.
|
3285
|
+
*/
|
3286
|
+
latestSolutionUpdate?: SolutionUpdateSummary;
|
3275
3287
|
}
|
3276
3288
|
export interface SolutionConfig {
|
3277
3289
|
/**
|
@@ -3333,6 +3345,35 @@ declare namespace Personalize {
|
|
3333
3345
|
*/
|
3334
3346
|
recipeArn?: Arn;
|
3335
3347
|
}
|
3348
|
+
export interface SolutionUpdateConfig {
|
3349
|
+
autoTrainingConfig?: AutoTrainingConfig;
|
3350
|
+
}
|
3351
|
+
export interface SolutionUpdateSummary {
|
3352
|
+
/**
|
3353
|
+
* The configuration details of the solution.
|
3354
|
+
*/
|
3355
|
+
solutionUpdateConfig?: SolutionUpdateConfig;
|
3356
|
+
/**
|
3357
|
+
* The status of the solution update. A solution update can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
|
3358
|
+
*/
|
3359
|
+
status?: Status;
|
3360
|
+
/**
|
3361
|
+
* Whether the solution automatically creates solution versions.
|
3362
|
+
*/
|
3363
|
+
performAutoTraining?: PerformAutoTraining;
|
3364
|
+
/**
|
3365
|
+
* The date and time (in Unix format) that the solution update was created.
|
3366
|
+
*/
|
3367
|
+
creationDateTime?: _Date;
|
3368
|
+
/**
|
3369
|
+
* The date and time (in Unix time) that the solution update was last updated.
|
3370
|
+
*/
|
3371
|
+
lastUpdatedDateTime?: _Date;
|
3372
|
+
/**
|
3373
|
+
* If a solution update fails, the reason behind the failure.
|
3374
|
+
*/
|
3375
|
+
failureReason?: FailureReason;
|
3376
|
+
}
|
3336
3377
|
export interface SolutionVersion {
|
3337
3378
|
/**
|
3338
3379
|
* The name of the solution version.
|
@@ -3609,6 +3650,26 @@ declare namespace Personalize {
|
|
3609
3650
|
*/
|
3610
3651
|
recommenderArn?: Arn;
|
3611
3652
|
}
|
3653
|
+
export interface UpdateSolutionRequest {
|
3654
|
+
/**
|
3655
|
+
* The Amazon Resource Name (ARN) of the solution to update.
|
3656
|
+
*/
|
3657
|
+
solutionArn: Arn;
|
3658
|
+
/**
|
3659
|
+
* Whether the solution uses automatic training to create new solution versions (trained models). You can change the training frequency by specifying a schedulingExpression in the AutoTrainingConfig as part of solution configuration. If you turn on automatic training, the first automatic training starts within one hour after the solution update completes. If you manually create a solution version within the hour, the solution skips the first automatic training. For more information about automatic training, see Configuring automatic training. After training starts, you can get the solution version's Amazon Resource Name (ARN) with the ListSolutionVersions API operation. To get its status, use the DescribeSolutionVersion.
|
3660
|
+
*/
|
3661
|
+
performAutoTraining?: PerformAutoTraining;
|
3662
|
+
/**
|
3663
|
+
* The new configuration details of the solution.
|
3664
|
+
*/
|
3665
|
+
solutionUpdateConfig?: SolutionUpdateConfig;
|
3666
|
+
}
|
3667
|
+
export interface UpdateSolutionResponse {
|
3668
|
+
/**
|
3669
|
+
* The same solution Amazon Resource Name (ARN) as given in the request.
|
3670
|
+
*/
|
3671
|
+
solutionArn?: Arn;
|
3672
|
+
}
|
3612
3673
|
/**
|
3613
3674
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
3614
3675
|
*/
|
@@ -3213,7 +3213,7 @@ declare namespace QuickSight {
|
|
3213
3213
|
/**
|
3214
3214
|
* An expression that defines the calculated column.
|
3215
3215
|
*/
|
3216
|
-
Expression:
|
3216
|
+
Expression: DataSetCalculatedFieldExpression;
|
3217
3217
|
}
|
3218
3218
|
export type CalculatedColumnList = CalculatedColumn[];
|
3219
3219
|
export interface CalculatedField {
|
@@ -5947,6 +5947,7 @@ declare namespace QuickSight {
|
|
5947
5947
|
DatasetParameters?: DatasetParameterList;
|
5948
5948
|
}
|
5949
5949
|
export type DataSetArnsList = Arn[];
|
5950
|
+
export type DataSetCalculatedFieldExpression = string;
|
5950
5951
|
export interface DataSetConfiguration {
|
5951
5952
|
/**
|
5952
5953
|
* Placeholder.
|
@@ -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?:
|
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
|
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?:
|
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?:
|
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:
|
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:
|
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:
|
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?:
|
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?:
|
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
|
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?:
|
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?:
|
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:
|
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?:
|
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?:
|
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?:
|
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:
|
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:
|
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
|
/**
|
@@ -2347,8 +2347,17 @@ declare namespace StepFunctions {
|
|
2347
2347
|
* The target type of state machine for this definition. The default is STANDARD.
|
2348
2348
|
*/
|
2349
2349
|
type?: StateMachineType;
|
2350
|
+
/**
|
2351
|
+
* Minimum level of diagnostics to return. ERROR returns only ERROR diagnostics, whereas WARNING returns both WARNING and ERROR diagnostics. The default is ERROR.
|
2352
|
+
*/
|
2353
|
+
severity?: ValidateStateMachineDefinitionSeverity;
|
2354
|
+
/**
|
2355
|
+
* The maximum number of diagnostics that are returned per call. The default and maximum value is 100. Setting the value to 0 will also use the default of 100. If the number of diagnostics returned in the response exceeds maxResults, the value of the truncated field in the response will be set to true.
|
2356
|
+
*/
|
2357
|
+
maxResults?: ValidateStateMachineDefinitionMaxResult;
|
2350
2358
|
}
|
2351
2359
|
export type ValidateStateMachineDefinitionLocation = string;
|
2360
|
+
export type ValidateStateMachineDefinitionMaxResult = number;
|
2352
2361
|
export type ValidateStateMachineDefinitionMessage = string;
|
2353
2362
|
export interface ValidateStateMachineDefinitionOutput {
|
2354
2363
|
/**
|
@@ -2359,9 +2368,14 @@ declare namespace StepFunctions {
|
|
2359
2368
|
* If the result is OK, this field will be empty. When there are errors, this field will contain an array of Diagnostic objects to help you troubleshoot.
|
2360
2369
|
*/
|
2361
2370
|
diagnostics: ValidateStateMachineDefinitionDiagnosticList;
|
2371
|
+
/**
|
2372
|
+
* The result value will be true if the number of diagnostics found in the workflow definition exceeds maxResults. When all diagnostics results are returned, the value will be false.
|
2373
|
+
*/
|
2374
|
+
truncated?: ValidateStateMachineDefinitionTruncated;
|
2362
2375
|
}
|
2363
2376
|
export type ValidateStateMachineDefinitionResultCode = "OK"|"FAIL"|string;
|
2364
|
-
export type ValidateStateMachineDefinitionSeverity = "ERROR"|string;
|
2377
|
+
export type ValidateStateMachineDefinitionSeverity = "ERROR"|"WARNING"|string;
|
2378
|
+
export type ValidateStateMachineDefinitionTruncated = boolean;
|
2365
2379
|
export type VersionDescription = string;
|
2366
2380
|
export type VersionWeight = number;
|
2367
2381
|
export type includedDetails = boolean;
|
@@ -380,11 +380,11 @@ declare class WAFV2 extends Service {
|
|
380
380
|
*/
|
381
381
|
putManagedRuleSetVersions(callback?: (err: AWSError, data: WAFV2.Types.PutManagedRuleSetVersionsResponse) => void): Request<WAFV2.Types.PutManagedRuleSetVersionsResponse, AWSError>;
|
382
382
|
/**
|
383
|
-
*
|
383
|
+
* Use this to share a rule group with other accounts. This action attaches an IAM policy to the specified resource. You must be the owner of the rule group to perform this operation. This action is subject to the following restrictions: You can attach only one policy with each PutPermissionPolicy request. The ARN in the request must be a valid WAF RuleGroup ARN and the rule group must exist in the same Region. The user making the request must be the owner of the rule group. If a rule group has been shared with your account, you can access it through the call GetRuleGroup, and you can reference it in CreateWebACL and UpdateWebACL. Rule groups that are shared with you don't appear in your WAF console rule groups listing.
|
384
384
|
*/
|
385
385
|
putPermissionPolicy(params: WAFV2.Types.PutPermissionPolicyRequest, callback?: (err: AWSError, data: WAFV2.Types.PutPermissionPolicyResponse) => void): Request<WAFV2.Types.PutPermissionPolicyResponse, AWSError>;
|
386
386
|
/**
|
387
|
-
*
|
387
|
+
* Use this to share a rule group with other accounts. This action attaches an IAM policy to the specified resource. You must be the owner of the rule group to perform this operation. This action is subject to the following restrictions: You can attach only one policy with each PutPermissionPolicy request. The ARN in the request must be a valid WAF RuleGroup ARN and the rule group must exist in the same Region. The user making the request must be the owner of the rule group. If a rule group has been shared with your account, you can access it through the call GetRuleGroup, and you can reference it in CreateWebACL and UpdateWebACL. Rule groups that are shared with you don't appear in your WAF console rule groups listing.
|
388
388
|
*/
|
389
389
|
putPermissionPolicy(callback?: (err: AWSError, data: WAFV2.Types.PutPermissionPolicyResponse) => void): Request<WAFV2.Types.PutPermissionPolicyResponse, AWSError>;
|
390
390
|
/**
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
83
83
|
/**
|
84
84
|
* @constant
|
85
85
|
*/
|
86
|
-
VERSION: '2.
|
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);
|