cdk-docker-image-deployment 0.0.190 → 0.0.191
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +8 -1
- package/node_modules/aws-sdk/README.md +14 -1
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +64 -10
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +335 -49
- package/node_modules/aws-sdk/apis/tnb-2008-10-21.min.json +21 -3
- package/node_modules/aws-sdk/apis/wisdom-2020-10-19.min.json +1 -2
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +61 -21
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +3 -0
- package/node_modules/aws-sdk/clients/s3control.d.ts +298 -36
- package/node_modules/aws-sdk/clients/tnb.d.ts +31 -7
- package/node_modules/aws-sdk/clients/wisdom.d.ts +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +8 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +10 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +6 -6
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/maintenance_mode_message.js +7 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
|
1
|
+
// AWS SDK for JavaScript v2.1334.0
|
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
|
4
4
|
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
@@ -254042,7 +254042,7 @@ AWS.util.update(AWS, {
|
|
|
254042
254042
|
/**
|
|
254043
254043
|
* @constant
|
|
254044
254044
|
*/
|
|
254045
|
-
VERSION: '2.
|
|
254045
|
+
VERSION: '2.1334.0',
|
|
254046
254046
|
|
|
254047
254047
|
/**
|
|
254048
254048
|
* @api private
|
|
@@ -258719,6 +258719,13 @@ function emitWarning() {
|
|
|
258719
258719
|
return;
|
|
258720
258720
|
}
|
|
258721
258721
|
|
|
258722
|
+
if (
|
|
258723
|
+
typeof process.env === 'object' &&
|
|
258724
|
+
typeof process.env.AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE !== 'undefined'
|
|
258725
|
+
) {
|
|
258726
|
+
return;
|
|
258727
|
+
}
|
|
258728
|
+
|
|
258722
258729
|
if (typeof process.emitWarning === 'function') {
|
|
258723
258730
|
process.emitWarning(warning, {
|
|
258724
258731
|
type: 'NOTE'
|
|
@@ -276152,7 +276159,7 @@ var LRUCache = /** @class */ (function () {
|
|
|
276152
276159
|
}());
|
|
276153
276160
|
exports.LRUCache = LRUCache;
|
|
276154
276161
|
},{}],462:[function(require,module,exports){
|
|
276155
|
-
// AWS SDK for JavaScript v2.
|
|
276162
|
+
// AWS SDK for JavaScript v2.1334.0
|
|
276156
276163
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
276157
276164
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
|
276158
276165
|
require('./browser_loader');
|