cdk-comprehend-s3olap 2.0.198 → 2.0.199
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +523 -212
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +344 -84
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +56 -49
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +265 -256
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +624 -606
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +913 -854
- package/node_modules/aws-sdk/clients/appstream.d.ts +426 -8
- package/node_modules/aws-sdk/clients/chime.d.ts +268 -268
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +33 -22
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +28 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +6 -6
- package/node_modules/aws-sdk/clients/glue.d.ts +23 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +89 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +268 -259
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +28 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -421,6 +421,10 @@ export namespace DocumentClient {
|
|
421
421
|
* The error message associated with the PartiQL batch response.
|
422
422
|
*/
|
423
423
|
Message?: String;
|
424
|
+
/**
|
425
|
+
* The item which caused the condition check to fail. This will be set if ReturnValuesOnConditionCheckFailure is specified as ALL_OLD.
|
426
|
+
*/
|
427
|
+
Item?: AttributeMap;
|
424
428
|
}
|
425
429
|
export type BatchStatementErrorCodeEnum = "ConditionalCheckFailed"|"ItemCollectionSizeLimitExceeded"|"RequestLimitExceeded"|"ValidationError"|"ProvisionedThroughputExceeded"|"TransactionConflict"|"ThrottlingError"|"InternalServerError"|"ResourceNotFound"|"AccessDenied"|"DuplicateItem"|string;
|
426
430
|
export interface BatchStatementRequest {
|
@@ -436,6 +440,10 @@ export namespace DocumentClient {
|
|
436
440
|
* The read consistency of the PartiQL batch request.
|
437
441
|
*/
|
438
442
|
ConsistentRead?: ConsistentRead;
|
443
|
+
/**
|
444
|
+
* An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
|
445
|
+
*/
|
446
|
+
ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
|
439
447
|
}
|
440
448
|
export interface BatchStatementResponse {
|
441
449
|
/**
|
@@ -842,6 +850,10 @@ export namespace DocumentClient {
|
|
842
850
|
* One or more values that can be substituted in an expression. Use the : (colon) character in an expression to dereference an attribute value. For example, suppose that you wanted to check whether the value of the ProductStatus attribute was one of the following: Available | Backordered | Discontinued You would first need to specify ExpressionAttributeValues as follows: { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} } You could then use these values in an expression, such as this: ProductStatus IN (:avail, :back, :disc) For more information on expression attribute values, see Condition Expressions in the Amazon DynamoDB Developer Guide.
|
843
851
|
*/
|
844
852
|
ExpressionAttributeValues?: ExpressionAttributeValueMap;
|
853
|
+
/**
|
854
|
+
* An optional parameter that returns the item attributes for a DeleteItem operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
|
855
|
+
*/
|
856
|
+
ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
|
845
857
|
}
|
846
858
|
export interface DeleteItemOutput {
|
847
859
|
/**
|
@@ -1118,6 +1130,10 @@ export namespace DocumentClient {
|
|
1118
1130
|
* The maximum number of items to evaluate (not necessarily the number of matching items). If DynamoDB processes the number of items up to the limit while processing the results, it stops the operation and returns the matching values up to that point, along with a key in LastEvaluatedKey to apply in a subsequent operation so you can pick up where you left off. Also, if the processed dataset size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation and returns the matching values up to the limit, and a key in LastEvaluatedKey to apply in a subsequent operation to continue the operation.
|
1119
1131
|
*/
|
1120
1132
|
Limit?: PositiveIntegerObject;
|
1133
|
+
/**
|
1134
|
+
* An optional parameter that returns the item attributes for an ExecuteStatement operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
|
1135
|
+
*/
|
1136
|
+
ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
|
1121
1137
|
}
|
1122
1138
|
export interface ExecuteStatementOutput {
|
1123
1139
|
/**
|
@@ -2061,6 +2077,10 @@ export namespace DocumentClient {
|
|
2061
2077
|
* The parameter values.
|
2062
2078
|
*/
|
2063
2079
|
Parameters?: PreparedStatementParameters;
|
2080
|
+
/**
|
2081
|
+
* An optional parameter that returns the item attributes for a PartiQL ParameterizedStatement operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
|
2082
|
+
*/
|
2083
|
+
ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
|
2064
2084
|
}
|
2065
2085
|
export type ParameterizedStatements = ParameterizedStatement[];
|
2066
2086
|
export type PartiQLBatchRequest = BatchStatementRequest[];
|
@@ -2206,6 +2226,10 @@ export namespace DocumentClient {
|
|
2206
2226
|
* One or more values that can be substituted in an expression. Use the : (colon) character in an expression to dereference an attribute value. For example, suppose that you wanted to check whether the value of the ProductStatus attribute was one of the following: Available | Backordered | Discontinued You would first need to specify ExpressionAttributeValues as follows: { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} } You could then use these values in an expression, such as this: ProductStatus IN (:avail, :back, :disc) For more information on expression attribute values, see Condition Expressions in the Amazon DynamoDB Developer Guide.
|
2207
2227
|
*/
|
2208
2228
|
ExpressionAttributeValues?: ExpressionAttributeValueMap;
|
2229
|
+
/**
|
2230
|
+
* An optional parameter that returns the item attributes for a PutItem operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
|
2231
|
+
*/
|
2232
|
+
ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
|
2209
2233
|
}
|
2210
2234
|
export type PutItemInputAttributeMap = {[key: string]: AttributeValue};
|
2211
2235
|
export interface PutItemOutput {
|
@@ -3353,6 +3377,10 @@ export namespace DocumentClient {
|
|
3353
3377
|
* One or more values that can be substituted in an expression. Use the : (colon) character in an expression to dereference an attribute value. For example, suppose that you wanted to check whether the value of the ProductStatus attribute was one of the following: Available | Backordered | Discontinued You would first need to specify ExpressionAttributeValues as follows: { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} } You could then use these values in an expression, such as this: ProductStatus IN (:avail, :back, :disc) For more information on expression attribute values, see Condition Expressions in the Amazon DynamoDB Developer Guide.
|
3354
3378
|
*/
|
3355
3379
|
ExpressionAttributeValues?: ExpressionAttributeValueMap;
|
3380
|
+
/**
|
3381
|
+
* An optional parameter that returns the item attributes for an UpdateItem operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
|
3382
|
+
*/
|
3383
|
+
ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
|
3356
3384
|
}
|
3357
3385
|
export interface UpdateItemOutput {
|
3358
3386
|
/**
|
package/package.json
CHANGED
@@ -43,7 +43,7 @@
|
|
43
43
|
"@types/node": "^16",
|
44
44
|
"@typescript-eslint/eslint-plugin": "^5",
|
45
45
|
"@typescript-eslint/parser": "^5",
|
46
|
-
"aws-cdk-lib": "^2.
|
46
|
+
"aws-cdk-lib": "^2.86.0",
|
47
47
|
"constructs": "^10.0.5",
|
48
48
|
"esbuild": "^0.18.10",
|
49
49
|
"eslint": "^8",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"jsii-docgen": "^1.8.110",
|
58
58
|
"jsii-pacmak": "^1.84.0",
|
59
59
|
"npm-check-updates": "^16",
|
60
|
-
"projen": "^0.71.
|
60
|
+
"projen": "^0.71.117",
|
61
61
|
"standard-version": "^9",
|
62
62
|
"ts-jest": "^27",
|
63
63
|
"typescript": "^4.9.5"
|
@@ -67,8 +67,8 @@
|
|
67
67
|
"constructs": "^10.0.5"
|
68
68
|
},
|
69
69
|
"dependencies": {
|
70
|
-
"aws-cdk-lib": "^2.
|
71
|
-
"aws-sdk": "^2.
|
70
|
+
"aws-cdk-lib": "^2.86.0",
|
71
|
+
"aws-sdk": "^2.1408.0",
|
72
72
|
"constructs": "^10.0.5",
|
73
73
|
"esbuild": "^0.18.10"
|
74
74
|
},
|
@@ -95,7 +95,7 @@
|
|
95
95
|
],
|
96
96
|
"main": "lib/index.js",
|
97
97
|
"license": "Apache-2.0",
|
98
|
-
"version": "2.0.
|
98
|
+
"version": "2.0.199",
|
99
99
|
"jest": {
|
100
100
|
"testMatch": [
|
101
101
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|