cdk-lambda-subminute 2.0.395 → 2.0.397
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 +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +8 -13
- package/node_modules/aws-sdk/apis/chatbot-2017-10-11.min.json +1 -1
- package/node_modules/aws-sdk/apis/imagebuilder-2019-12-02.min.json +6 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +61 -50
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +117 -97
- package/node_modules/aws-sdk/apis/verifiedpermissions-2021-12-01.min.json +88 -22
- package/node_modules/aws-sdk/clients/apigateway.d.ts +1 -1
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +4 -4
- package/node_modules/aws-sdk/clients/imagebuilder.d.ts +11 -3
- package/node_modules/aws-sdk/clients/mwaa.d.ts +1 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +18 -8
- package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
- package/node_modules/aws-sdk/clients/sesv2.d.ts +27 -6
- package/node_modules/aws-sdk/clients/verifiedpermissions.d.ts +75 -26
- 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 +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +64 -53
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +32 -32
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +2 -2
- package/node_modules/aws-sdk/package.json +3 -2
- package/node_modules/aws-sdk/scripts/warn-maintenance-mode.js +14 -0
- package/package.json +5 -5
@@ -1327,7 +1327,7 @@ export namespace DocumentClient {
|
|
1327
1327
|
*/
|
1328
1328
|
S3Bucket: S3Bucket;
|
1329
1329
|
/**
|
1330
|
-
* The ID of the Amazon Web Services account that owns the bucket the export will be stored in.
|
1330
|
+
* The ID of the Amazon Web Services account that owns the bucket the export will be stored in. S3BucketOwner is a required parameter when exporting to a S3 bucket in another account.
|
1331
1331
|
*/
|
1332
1332
|
S3BucketOwner?: S3BucketOwner;
|
1333
1333
|
/**
|
@@ -2171,7 +2171,7 @@ export namespace DocumentClient {
|
|
2171
2171
|
export type ProcessedItemCount = number;
|
2172
2172
|
export interface Projection {
|
2173
2173
|
/**
|
2174
|
-
* The set of attributes that are projected into the index: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index.
|
2174
|
+
* The set of attributes that are projected into the index: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index. When using the DynamoDB console, ALL is selected by default.
|
2175
2175
|
*/
|
2176
2176
|
ProjectionType?: ProjectionType;
|
2177
2177
|
/**
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "aws-sdk",
|
3
3
|
"description": "AWS SDK for JavaScript",
|
4
|
-
"version": "2.
|
4
|
+
"version": "2.1572.0",
|
5
5
|
"author": {
|
6
6
|
"name": "Amazon Web Services",
|
7
7
|
"email": "",
|
@@ -145,6 +145,7 @@
|
|
145
145
|
"translate-api-test": "mocha scripts/lib/translate-api.spec.js",
|
146
146
|
"typings-generator-test": "mocha scripts/lib/prune-shapes.spec.js",
|
147
147
|
"helper-test": "mocha scripts/lib/test-helper.spec.js",
|
148
|
-
"csm-functional-test": "mocha test/publisher/functional_test"
|
148
|
+
"csm-functional-test": "mocha test/publisher/functional_test",
|
149
|
+
"postinstall": "node scripts/warn-maintenance-mode.js"
|
149
150
|
}
|
150
151
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
console.warn(
|
2
|
+
'\n╔═════════════════════════════════════════════════╗'
|
3
|
+
+ '\n║ The AWS SDK for JavaScript (v2) will reach ║'
|
4
|
+
+ '\n║ -> maintenance mode on September 8, 2024. ║'
|
5
|
+
+ '\n║ -> end-of-support on September 8, 2025. ║'
|
6
|
+
+ '\n║ ║'
|
7
|
+
+ '\n║ To continue receiving updates to AWS services, ║'
|
8
|
+
+ '\n║ bug fixes, and security updates please upgrade ║'
|
9
|
+
+ '\n║ to AWS SDK for JavaScript (v3). ║'
|
10
|
+
+ '\n║ ║'
|
11
|
+
+ '\n║ More info: https://a.co/cUPnyil ║'
|
12
|
+
+ '\n╚═════════════════════════════════════════════════╝'
|
13
|
+
+ '\n'
|
14
|
+
);
|
package/package.json
CHANGED
@@ -51,11 +51,11 @@
|
|
51
51
|
"jest": "^27",
|
52
52
|
"jest-junit": "^15",
|
53
53
|
"jsii": "1.x",
|
54
|
-
"jsii-diff": "^1.
|
54
|
+
"jsii-diff": "^1.95.0",
|
55
55
|
"jsii-docgen": "^1.8.110",
|
56
|
-
"jsii-pacmak": "^1.
|
56
|
+
"jsii-pacmak": "^1.95.0",
|
57
57
|
"jsii-rosetta": "1.x",
|
58
|
-
"projen": "^0.80.
|
58
|
+
"projen": "^0.80.8",
|
59
59
|
"source-map-support": "^0.5.21",
|
60
60
|
"standard-version": "^9",
|
61
61
|
"ts-jest": "^27",
|
@@ -67,7 +67,7 @@
|
|
67
67
|
},
|
68
68
|
"dependencies": {
|
69
69
|
"aws-cdk-lib": "^2.95.0",
|
70
|
-
"aws-sdk": "^2.
|
70
|
+
"aws-sdk": "^2.1572.0",
|
71
71
|
"constructs": "^10.0.5"
|
72
72
|
},
|
73
73
|
"bundledDependencies": [
|
@@ -89,7 +89,7 @@
|
|
89
89
|
],
|
90
90
|
"main": "lib/index.js",
|
91
91
|
"license": "Apache-2.0",
|
92
|
-
"version": "2.0.
|
92
|
+
"version": "2.0.397",
|
93
93
|
"jest": {
|
94
94
|
"testMatch": [
|
95
95
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|