cdk-docker-image-deployment 0.0.439 → 0.0.441
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/handler.d.ts +1 -0
- package/node_modules/@types/aws-lambda/index.d.ts +1 -0
- package/node_modules/@types/aws-lambda/package.json +2 -2
- package/node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts +1 -0
- package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +1 -1
- package/node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts +2 -2
- package/node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts +45 -0
- package/node_modules/@types/aws-lambda/trigger/sqs.d.ts +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.examples.json +251 -0
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +349 -106
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.examples.json +5 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.min.json +359 -0
- package/node_modules/aws-sdk/apis/cloudfront-keyvaluestore-2022-07-26.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.examples.json +174 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.min.json +51 -0
- package/node_modules/aws-sdk/apis/inspector-scan-2023-08-08.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +989 -176
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +729 -131
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +92 -21
- package/node_modules/aws-sdk/apis/metadata.json +8 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +152 -152
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +109 -92
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +112 -84
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +544 -533
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +220 -2
- package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.d.ts +294 -0
- package/node_modules/aws-sdk/clients/cloudfrontkeyvaluestore.js +18 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +12 -12
- package/node_modules/aws-sdk/clients/inspectorscan.d.ts +59 -0
- package/node_modules/aws-sdk/clients/inspectorscan.js +18 -0
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +1080 -179
- package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +666 -9
- package/node_modules/aws-sdk/clients/kinesis.d.ts +96 -42
- package/node_modules/aws-sdk/clients/s3.d.ts +38 -15
- package/node_modules/aws-sdk/clients/s3control.d.ts +35 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +13 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +89 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +601 -225
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -92
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/s3.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -6
|
@@ -359,6 +359,8 @@ export abstract class ConfigurationServicePlaceholders {
|
|
|
359
359
|
datazone?: AWS.DataZone.Types.ClientConfiguration;
|
|
360
360
|
launchwizard?: AWS.LaunchWizard.Types.ClientConfiguration;
|
|
361
361
|
trustedadvisor?: AWS.TrustedAdvisor.Types.ClientConfiguration;
|
|
362
|
+
cloudfrontkeyvaluestore?: AWS.CloudFrontKeyValueStore.Types.ClientConfiguration;
|
|
363
|
+
inspectorscan?: AWS.InspectorScan.Types.ClientConfiguration;
|
|
362
364
|
}
|
|
363
365
|
export interface ConfigurationServiceApiVersions {
|
|
364
366
|
acm?: AWS.ACM.Types.apiVersion;
|
|
@@ -720,4 +722,6 @@ export interface ConfigurationServiceApiVersions {
|
|
|
720
722
|
datazone?: AWS.DataZone.Types.apiVersion;
|
|
721
723
|
launchwizard?: AWS.LaunchWizard.Types.apiVersion;
|
|
722
724
|
trustedadvisor?: AWS.TrustedAdvisor.Types.apiVersion;
|
|
725
|
+
cloudfrontkeyvaluestore?: AWS.CloudFrontKeyValueStore.Types.apiVersion;
|
|
726
|
+
inspectorscan?: AWS.InspectorScan.Types.apiVersion;
|
|
723
727
|
}
|
|
@@ -278,7 +278,7 @@ AWS.util.update(AWS.S3.prototype, {
|
|
|
278
278
|
req.httpRequest.endpoint.hostname.indexOf('s3.amazonaws.com') >= 0
|
|
279
279
|
) {
|
|
280
280
|
var insertPoint = config.endpoint.indexOf('.amazonaws.com');
|
|
281
|
-
regionalEndpoint = config.endpoint.substring(0, insertPoint) +
|
|
281
|
+
var regionalEndpoint = config.endpoint.substring(0, insertPoint) +
|
|
282
282
|
'.us-east-1' + config.endpoint.substring(insertPoint);
|
|
283
283
|
req.httpRequest.updateEndpoint(regionalEndpoint);
|
|
284
284
|
}
|
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@typescript-eslint/parser": "^6",
|
|
45
45
|
"aws-cdk-lib": "2.24.0",
|
|
46
46
|
"constructs": "10.0.5",
|
|
47
|
-
"esbuild": "^0.19.
|
|
47
|
+
"esbuild": "^0.19.7",
|
|
48
48
|
"eslint": "^8",
|
|
49
49
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
50
50
|
"eslint-plugin-import": "^2.29.0",
|
|
@@ -55,8 +55,7 @@
|
|
|
55
55
|
"jsii-docgen": "^7.2.9",
|
|
56
56
|
"jsii-pacmak": "^1.92.0",
|
|
57
57
|
"jsii-rosetta": "1.x",
|
|
58
|
-
"
|
|
59
|
-
"projen": "^0.77.1",
|
|
58
|
+
"projen": "^0.77.2",
|
|
60
59
|
"standard-version": "^9",
|
|
61
60
|
"ts-jest": "^27",
|
|
62
61
|
"ts-node": "^10.9.1",
|
|
@@ -67,8 +66,8 @@
|
|
|
67
66
|
"constructs": "^10.0.5"
|
|
68
67
|
},
|
|
69
68
|
"dependencies": {
|
|
70
|
-
"@types/aws-lambda": "^8.10.
|
|
71
|
-
"aws-sdk": "^2.
|
|
69
|
+
"@types/aws-lambda": "^8.10.129",
|
|
70
|
+
"aws-sdk": "^2.1502.0"
|
|
72
71
|
},
|
|
73
72
|
"bundledDependencies": [
|
|
74
73
|
"@types/aws-lambda",
|
|
@@ -84,7 +83,7 @@
|
|
|
84
83
|
"main": "lib/index.js",
|
|
85
84
|
"license": "Apache-2.0",
|
|
86
85
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
87
|
-
"version": "0.0.
|
|
86
|
+
"version": "0.0.441",
|
|
88
87
|
"jest": {
|
|
89
88
|
"testMatch": [
|
|
90
89
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|