aws-sdk 2.1624.0 → 2.1626.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 (36) hide show
  1. package/README.md +1 -1
  2. package/apis/chatbot-2017-10-11.min.json +138 -24
  3. package/apis/cloudformation-2010-05-15.min.json +48 -43
  4. package/apis/cloudfront-2020-05-31.min.json +3 -0
  5. package/apis/glue-2017-03-31.min.json +350 -343
  6. package/apis/kms-2014-11-01.min.json +3 -0
  7. package/apis/lightsail-2016-11-28.min.json +7 -1
  8. package/apis/mailmanager-2023-10-17.examples.json +5 -0
  9. package/apis/mailmanager-2023-10-17.min.json +1836 -0
  10. package/apis/mailmanager-2023-10-17.paginators.json +58 -0
  11. package/apis/metadata.json +3 -0
  12. package/apis/opensearch-2021-01-01.min.json +18 -12
  13. package/apis/pi-2018-02-27.min.json +24 -17
  14. package/apis/wafv2-2019-07-29.min.json +42 -32
  15. package/clients/all.d.ts +1 -0
  16. package/clients/all.js +2 -1
  17. package/clients/chatbot.d.ts +100 -0
  18. package/clients/cloudformation.d.ts +11 -2
  19. package/clients/glue.d.ts +20 -3
  20. package/clients/kms.d.ts +6 -6
  21. package/clients/lightsail.d.ts +29 -25
  22. package/clients/mailmanager.d.ts +2320 -0
  23. package/clients/mailmanager.js +18 -0
  24. package/clients/opensearch.d.ts +14 -1
  25. package/clients/pi.d.ts +15 -8
  26. package/clients/rds.d.ts +4 -4
  27. package/clients/storagegateway.d.ts +7 -7
  28. package/clients/wafv2.d.ts +34 -4
  29. package/dist/aws-sdk-core-react-native.js +5 -3
  30. package/dist/aws-sdk-react-native.js +53 -14
  31. package/dist/aws-sdk.js +63 -47
  32. package/dist/aws-sdk.min.js +53 -53
  33. package/lib/config_service_placeholders.d.ts +2 -0
  34. package/lib/core.js +1 -1
  35. package/lib/query/query_param_serializer.js +3 -1
  36. package/package.json +1 -1
@@ -380,6 +380,7 @@ export abstract class ConfigurationServicePlaceholders {
380
380
  deadline?: AWS.Deadline.Types.ClientConfiguration;
381
381
  controlcatalog?: AWS.ControlCatalog.Types.ClientConfiguration;
382
382
  route53profiles?: AWS.Route53Profiles.Types.ClientConfiguration;
383
+ mailmanager?: AWS.MailManager.Types.ClientConfiguration;
383
384
  }
384
385
  export interface ConfigurationServiceApiVersions {
385
386
  acm?: AWS.ACM.Types.apiVersion;
@@ -762,4 +763,5 @@ export interface ConfigurationServiceApiVersions {
762
763
  deadline?: AWS.Deadline.Types.apiVersion;
763
764
  controlcatalog?: AWS.ControlCatalog.Types.apiVersion;
764
765
  route53profiles?: AWS.Route53Profiles.Types.apiVersion;
766
+ mailmanager?: AWS.MailManager.Types.apiVersion;
765
767
  }
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1624.0',
23
+ VERSION: '2.1626.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -42,7 +42,9 @@ function serializeList(name, list, rules, fn) {
42
42
  var memberRules = rules.member || {};
43
43
 
44
44
  if (list.length === 0) {
45
- fn.call(this, name, null);
45
+ if (rules.api.protocol !== 'ec2') {
46
+ fn.call(this, name, null);
47
+ }
46
48
  return;
47
49
  }
48
50
 
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.1624.0",
4
+ "version": "2.1626.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",