cdk-comprehend-s3olap 2.0.5 → 2.0.8
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/budgets-2016-10-20.min.json +53 -53
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +105 -48
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +146 -143
- package/node_modules/aws-sdk/apis/metadata.json +0 -4
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +67 -0
- package/node_modules/aws-sdk/clients/all.d.ts +0 -1
- package/node_modules/aws-sdk/clients/all.js +1 -2
- package/node_modules/aws-sdk/clients/budgets.d.ts +2 -1
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +5 -5
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +69 -2
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +6 -1
- package/node_modules/aws-sdk/clients/outposts.d.ts +94 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +17 -9
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +38 -59
- package/node_modules/aws-sdk/dist/aws-sdk.js +18 -14
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +0 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/util.js +15 -7
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.examples.json +0 -5
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +0 -1206
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.paginators.json +0 -40
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +0 -1525
- package/node_modules/aws-sdk/clients/redshiftserverless.js +0 -18
@@ -1,4 +1,4 @@
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
1
|
+
// AWS SDK for JavaScript v2.1154.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){
|
@@ -168824,10 +168824,6 @@ module.exports={
|
|
168824
168824
|
},
|
168825
168825
|
"m2": {
|
168826
168826
|
"name": "M2"
|
168827
|
-
},
|
168828
|
-
"redshiftserverless": {
|
168829
|
-
"prefix": "redshift-serverless",
|
168830
|
-
"name": "RedshiftServerless"
|
168831
168827
|
}
|
168832
168828
|
}
|
168833
168829
|
},{}],164:[function(require,module,exports){
|
@@ -239967,7 +239963,7 @@ AWS.util.update(AWS, {
|
|
239967
239963
|
/**
|
239968
239964
|
* @constant
|
239969
239965
|
*/
|
239970
|
-
VERSION: '2.
|
239966
|
+
VERSION: '2.1154.0',
|
239971
239967
|
|
239972
239968
|
/**
|
239973
239969
|
* @api private
|
@@ -253311,20 +253307,28 @@ var util = {
|
|
253311
253307
|
parse: function string(ini) {
|
253312
253308
|
var currentSection, map = {};
|
253313
253309
|
util.arrayEach(ini.split(/\r?\n/), function(line) {
|
253314
|
-
line = line.split(/(^|\s)[;#]/)[0]; // remove comments
|
253315
|
-
var
|
253316
|
-
if (
|
253317
|
-
currentSection =
|
253310
|
+
line = line.split(/(^|\s)[;#]/)[0].trim(); // remove comments and trim
|
253311
|
+
var isSection = line[0] === '[' && line[line.length - 1] === ']';
|
253312
|
+
if (isSection) {
|
253313
|
+
currentSection = line.substring(1, line.length - 1);
|
253318
253314
|
if (currentSection === '__proto__' || currentSection.split(/\s/)[1] === '__proto__') {
|
253319
253315
|
throw util.error(
|
253320
253316
|
new Error('Cannot load profile name \'' + currentSection + '\' from shared ini file.')
|
253321
253317
|
);
|
253322
253318
|
}
|
253323
253319
|
} else if (currentSection) {
|
253324
|
-
var
|
253325
|
-
|
253320
|
+
var indexOfEqualsSign = line.indexOf('=');
|
253321
|
+
var start = 0;
|
253322
|
+
var end = line.length - 1;
|
253323
|
+
var isAssignment =
|
253324
|
+
indexOfEqualsSign !== -1 && indexOfEqualsSign !== start && indexOfEqualsSign !== end;
|
253325
|
+
|
253326
|
+
if (isAssignment) {
|
253327
|
+
var name = line.substring(0, indexOfEqualsSign).trim();
|
253328
|
+
var value = line.substring(indexOfEqualsSign + 1).trim();
|
253329
|
+
|
253326
253330
|
map[currentSection] = map[currentSection] || {};
|
253327
|
-
map[currentSection][
|
253331
|
+
map[currentSection][name] = value;
|
253328
253332
|
}
|
253329
253333
|
}
|
253330
253334
|
});
|
@@ -261891,7 +261895,7 @@ var LRUCache = /** @class */ (function () {
|
|
261891
261895
|
}());
|
261892
261896
|
exports.LRUCache = LRUCache;
|
261893
261897
|
},{}],457:[function(require,module,exports){
|
261894
|
-
// AWS SDK for JavaScript v2.
|
261898
|
+
// AWS SDK for JavaScript v2.1154.0
|
261895
261899
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
261896
261900
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
261897
261901
|
require('./browser_loader');
|