aws-sdk 2.976.0 → 2.980.0
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/CHANGELOG.md +21 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +27 -1
- package/apis/compute-optimizer-2019-11-01.min.json +98 -25
- package/apis/ec2-2016-11-15.min.json +8 -1
- package/apis/elasticmapreduce-2009-03-31.min.json +84 -21
- package/apis/firehose-2015-08-04.min.json +104 -79
- package/apis/iot-2015-05-28.min.json +481 -232
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/kms-2014-11-01.examples.json +100 -94
- package/apis/kms-2014-11-01.min.json +54 -34
- package/apis/rekognition-2016-06-27.min.json +134 -110
- package/apis/s3-2006-03-01.examples.json +162 -162
- package/clients/cloudformation.d.ts +116 -80
- package/clients/codebuild.d.ts +3 -3
- package/clients/computeoptimizer.d.ts +181 -81
- package/clients/ec2.d.ts +34 -22
- package/clients/emr.d.ts +78 -15
- package/clients/firehose.d.ts +39 -10
- package/clients/iot.d.ts +829 -506
- package/clients/kms.d.ts +293 -280
- package/clients/memorydb.d.ts +2 -2
- package/clients/polly.d.ts +2 -2
- package/clients/rekognition.d.ts +27 -7
- package/clients/s3.d.ts +6 -6
- package/clients/sqs.d.ts +4 -4
- package/clients/transcribeservice.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -16
- package/dist/aws-sdk.js +907 -481
- package/dist/aws-sdk.min.js +85 -85
- package/dist/xml2js.js +2 -3
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/dist/xml2js.js
CHANGED
|
@@ -8770,7 +8770,7 @@ module.exports =
|
|
|
8770
8770
|
/* 41 */
|
|
8771
8771
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8772
8772
|
|
|
8773
|
-
|
|
8773
|
+
// Copyright Joyent, Inc. and other Node contributors.
|
|
8774
8774
|
//
|
|
8775
8775
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
8776
8776
|
// copy of this software and associated documentation files (the
|
|
@@ -8872,13 +8872,12 @@ module.exports =
|
|
|
8872
8872
|
}
|
|
8873
8873
|
exports.isPrimitive = isPrimitive;
|
|
8874
8874
|
|
|
8875
|
-
exports.isBuffer = Buffer.isBuffer;
|
|
8875
|
+
exports.isBuffer = __webpack_require__(28).Buffer.isBuffer;
|
|
8876
8876
|
|
|
8877
8877
|
function objectToString(o) {
|
|
8878
8878
|
return Object.prototype.toString.call(o);
|
|
8879
8879
|
}
|
|
8880
8880
|
|
|
8881
|
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(28).Buffer))
|
|
8882
8881
|
|
|
8883
8882
|
/***/ }),
|
|
8884
8883
|
/* 42 */
|
package/lib/core.js
CHANGED