aws-sdk 2.832.0 → 2.833.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 +7 -1
- package/README.md +1 -1
- package/apis/databrew-2017-07-25.min.json +79 -62
- package/apis/managedblockchain-2018-09-24.min.json +159 -36
- package/apis/monitoring-2010-08-01.min.json +15 -9
- package/apis/robomaker-2018-06-29.min.json +198 -170
- package/clients/cloudwatch.d.ts +12 -1
- package/clients/databrew.d.ts +170 -143
- package/clients/iot.d.ts +2 -2
- package/clients/managedblockchain.d.ts +140 -6
- package/clients/robomaker.d.ts +35 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +18 -12
- package/dist/aws-sdk.min.js +29 -29
- package/lib/config.d.ts +1 -1
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/lib/config.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export class Config extends ConfigBase {
|
|
|
9
9
|
constructor(options?: ConfigurationOptions & ConfigurationServicePlaceholders & APIVersions);
|
|
10
10
|
/**
|
|
11
11
|
* Loads configuration data from a JSON file into this config object.
|
|
12
|
-
* Loading configuration
|
|
12
|
+
* Loading configuration will reset all existing configuration on the object.
|
|
13
13
|
* This feature is not supported in the browser environment of the SDK.
|
|
14
14
|
*
|
|
15
15
|
* @param {string} path - the path relative to your process's current working directory to load configuration from.
|
package/lib/core.js
CHANGED