cdk-lambda-subminute 2.0.316 → 2.0.318

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 (28) hide show
  1. package/.jsii +31 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +110 -68
  5. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +9 -3
  6. package/node_modules/aws-sdk/apis/braket-2019-09-01.min.json +77 -42
  7. package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.min.json +1 -1
  8. package/node_modules/aws-sdk/apis/cloud9-2017-09-23.min.json +2 -1
  9. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.waiters2.json +48 -0
  10. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +257 -225
  11. package/node_modules/aws-sdk/clients/athena.d.ts +80 -5
  12. package/node_modules/aws-sdk/clients/billingconductor.d.ts +16 -0
  13. package/node_modules/aws-sdk/clients/braket.d.ts +33 -2
  14. package/node_modules/aws-sdk/clients/cleanroomsml.d.ts +1 -1
  15. package/node_modules/aws-sdk/clients/cloud9.d.ts +2 -2
  16. package/node_modules/aws-sdk/clients/cloudformation.d.ts +3 -3
  17. package/node_modules/aws-sdk/clients/ec2.d.ts +6 -6
  18. package/node_modules/aws-sdk/clients/finspace.d.ts +11 -11
  19. package/node_modules/aws-sdk/clients/medialive.d.ts +26 -0
  20. package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +2 -2
  21. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +6 -1
  22. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -8
  23. package/node_modules/aws-sdk/dist/aws-sdk.js +166 -71
  24. package/node_modules/aws-sdk/dist/aws-sdk.min.js +103 -103
  25. package/node_modules/aws-sdk/lib/core.js +1 -1
  26. package/node_modules/aws-sdk/lib/json/parser.js +5 -0
  27. package/node_modules/aws-sdk/package.json +1 -1
  28. package/package.json +3 -3
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1510.0',
86
+ VERSION: '2.1512.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -2640,12 +2640,17 @@ return /******/ (function(modules) { // webpackBootstrap
2640
2640
 
2641
2641
  var struct = {};
2642
2642
  var shapeMembers = shape.members;
2643
+ var isAwsQueryCompatible = shape.api && shape.api.awsQueryCompatible;
2643
2644
  util.each(shapeMembers, function(name, memberShape) {
2644
2645
  var locationName = memberShape.isLocationName ? memberShape.name : name;
2645
2646
  if (Object.prototype.hasOwnProperty.call(structure, locationName)) {
2646
2647
  var value = structure[locationName];
2647
2648
  var result = translate(value, memberShape);
2648
2649
  if (result !== undefined) struct[name] = result;
2650
+ } else if (isAwsQueryCompatible && memberShape.defaultValue) {
2651
+ if (memberShape.type === 'list') {
2652
+ struct[name] = typeof memberShape.defaultValue === 'function' ? memberShape.defaultValue() : memberShape.defaultValue;
2653
+ }
2649
2654
  }
2650
2655
  });
2651
2656
  return struct;