cdk-lambda-subminute 2.0.470 → 2.0.471
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 +1 -1
- package/node_modules/aws-sdk/apis/amplify-2017-07-25.min.json +76 -55
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +181 -44
- package/node_modules/aws-sdk/apis/fis-2020-12-01.min.json +19 -5
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +41 -37
- package/node_modules/aws-sdk/clients/amplify.d.ts +20 -1
- package/node_modules/aws-sdk/clients/appstream.d.ts +200 -1
- package/node_modules/aws-sdk/clients/codebuild.d.ts +10 -10
- package/node_modules/aws-sdk/clients/fis.d.ts +21 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +6 -0
- 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 +10 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +8 -4
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +3 -3
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/services/s3.js +5 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/aws-sdk/scripts/region-checker/allowlist.js +2 -1
- package/package.json +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
1
|
+
// AWS SDK for JavaScript v2.1675.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){
|
@@ -277592,7 +277592,7 @@ AWS.util.update(AWS, {
|
|
277592
277592
|
/**
|
277593
277593
|
* @constant
|
277594
277594
|
*/
|
277595
|
-
VERSION: '2.
|
277595
|
+
VERSION: '2.1675.0',
|
277596
277596
|
|
277597
277597
|
/**
|
277598
277598
|
* @api private
|
@@ -289587,7 +289587,11 @@ AWS.util.update(AWS.S3.prototype, {
|
|
289587
289587
|
// mutate params object argument passed in by user
|
289588
289588
|
var copiedParams = AWS.util.copy(params);
|
289589
289589
|
|
289590
|
-
if (
|
289590
|
+
if (
|
289591
|
+
this.config.region !== 'us-east-1'
|
289592
|
+
&& hostname !== this.api.globalEndpoint
|
289593
|
+
&& !params.CreateBucketConfiguration
|
289594
|
+
) {
|
289591
289595
|
copiedParams.CreateBucketConfiguration = { LocationConstraint: this.config.region };
|
289592
289596
|
}
|
289593
289597
|
return this.makeRequest('createBucket', copiedParams, callback);
|
@@ -299909,7 +299913,7 @@ var LRUCache = /** @class */ (function () {
|
|
299909
299913
|
}());
|
299910
299914
|
exports.LRUCache = LRUCache;
|
299911
299915
|
},{}],467:[function(require,module,exports){
|
299912
|
-
// AWS SDK for JavaScript v2.
|
299916
|
+
// AWS SDK for JavaScript v2.1675.0
|
299913
299917
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
299914
299918
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
299915
299919
|
require('./browser_loader');
|