aws-sdk 2.829.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/customer-profiles-2020-08-15.min.json +4 -2
  4. package/apis/databrew-2017-07-25.min.json +79 -62
  5. package/apis/ec2-2016-11-15.min.json +197 -190
  6. package/apis/elasticache-2015-02-02.min.json +1 -0
  7. package/apis/es-2015-01-01.min.json +6 -0
  8. package/apis/kafka-2018-11-14.min.json +41 -0
  9. package/apis/managedblockchain-2018-09-24.min.json +159 -36
  10. package/apis/metadata.json +8 -0
  11. package/apis/models.lex.v2-2020-08-07.examples.json +5 -0
  12. package/apis/models.lex.v2-2020-08-07.min.json +2845 -0
  13. package/apis/models.lex.v2-2020-08-07.paginators.json +49 -0
  14. package/apis/monitoring-2010-08-01.min.json +15 -9
  15. package/apis/redshift-2012-12-01.min.json +1 -1
  16. package/apis/resourcegroupstaggingapi-2017-01-26.min.json +14 -10
  17. package/apis/robomaker-2018-06-29.min.json +198 -170
  18. package/apis/runtime.lex.v2-2020-08-07.examples.json +4 -0
  19. package/apis/runtime.lex.v2-2020-08-07.min.json +531 -0
  20. package/apis/runtime.lex.v2-2020-08-07.paginators.json +3 -0
  21. package/apis/securityhub-2018-10-26.min.json +406 -187
  22. package/apis/sesv2-2019-09-27.min.json +40 -15
  23. package/clients/accessanalyzer.d.ts +5 -5
  24. package/clients/all.d.ts +2 -0
  25. package/clients/all.js +3 -1
  26. package/clients/backup.d.ts +27 -27
  27. package/clients/cloudwatch.d.ts +12 -1
  28. package/clients/customerprofiles.d.ts +2 -2
  29. package/clients/databrew.d.ts +170 -143
  30. package/clients/ec2.d.ts +119 -111
  31. package/clients/elasticache.d.ts +14 -10
  32. package/clients/es.d.ts +8 -0
  33. package/clients/greengrassv2.d.ts +6 -6
  34. package/clients/iot.d.ts +2 -2
  35. package/clients/kafka.d.ts +52 -0
  36. package/clients/lexmodelsv2.d.ts +3350 -0
  37. package/clients/lexmodelsv2.js +18 -0
  38. package/clients/lexruntimev2.d.ts +542 -0
  39. package/clients/lexruntimev2.js +18 -0
  40. package/clients/lightsail.d.ts +2 -2
  41. package/clients/managedblockchain.d.ts +140 -6
  42. package/clients/rds.d.ts +14 -14
  43. package/clients/redshift.d.ts +8 -8
  44. package/clients/resourcegroupstaggingapi.d.ts +50 -45
  45. package/clients/robomaker.d.ts +35 -3
  46. package/clients/securityhub.d.ts +410 -63
  47. package/clients/sesv2.d.ts +30 -2
  48. package/clients/ssm.d.ts +2 -2
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +91 -17
  51. package/dist/aws-sdk.js +225 -203
  52. package/dist/aws-sdk.min.js +60 -60
  53. package/lib/config.d.ts +1 -1
  54. package/lib/config_service_placeholders.d.ts +4 -0
  55. package/lib/core.js +1 -1
  56. 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 willr eset all existing configuration on the object.
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.
@@ -257,6 +257,8 @@ export abstract class ConfigurationServicePlaceholders {
257
257
  iotwireless?: AWS.IoTWireless.Types.ClientConfiguration;
258
258
  location?: AWS.Location.Types.ClientConfiguration;
259
259
  wellarchitected?: AWS.WellArchitected.Types.ClientConfiguration;
260
+ lexmodelsv2?: AWS.LexModelsV2.Types.ClientConfiguration;
261
+ lexruntimev2?: AWS.LexRuntimeV2.Types.ClientConfiguration;
260
262
  }
261
263
  export interface ConfigurationServiceApiVersions {
262
264
  acm?: AWS.ACM.Types.apiVersion;
@@ -516,4 +518,6 @@ export interface ConfigurationServiceApiVersions {
516
518
  iotwireless?: AWS.IoTWireless.Types.apiVersion;
517
519
  location?: AWS.Location.Types.apiVersion;
518
520
  wellarchitected?: AWS.WellArchitected.Types.apiVersion;
521
+ lexmodelsv2?: AWS.LexModelsV2.Types.apiVersion;
522
+ lexruntimev2?: AWS.LexRuntimeV2.Types.apiVersion;
519
523
  }
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.829.0',
23
+ VERSION: '2.833.0',
24
24
 
25
25
  /**
26
26
  * @api private
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.829.0",
4
+ "version": "2.833.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",