aws-sdk 2.1421.0 → 2.1423.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 +22 -1
  2. package/README.md +1 -1
  3. package/apis/billingconductor-2021-07-30.min.json +96 -68
  4. package/apis/customer-profiles-2020-08-15.min.json +253 -57
  5. package/apis/datasync-2018-11-09.min.json +198 -102
  6. package/apis/ec2-2016-11-15.min.json +300 -278
  7. package/apis/emr-serverless-2021-07-13.min.json +25 -3
  8. package/apis/entityresolution-2018-05-10.examples.json +5 -0
  9. package/apis/entityresolution-2018-05-10.min.json +823 -0
  10. package/apis/entityresolution-2018-05-10.paginators.json +22 -0
  11. package/apis/glue-2017-03-31.min.json +390 -318
  12. package/apis/managedblockchain-query-2023-05-04.examples.json +5 -0
  13. package/apis/managedblockchain-query-2023-05-04.min.json +438 -0
  14. package/apis/managedblockchain-query-2023-05-04.paginators.json +22 -0
  15. package/apis/managedblockchain-query-2023-05-04.waiters2.json +5 -0
  16. package/apis/metadata.json +7 -0
  17. package/apis/rds-2014-10-31.min.json +2 -1
  18. package/apis/sagemaker-2017-07-24.min.json +4 -0
  19. package/apis/securityhub-2018-10-26.min.json +145 -108
  20. package/apis/sts-2011-06-15.min.json +21 -11
  21. package/apis/transfer-2018-11-05.min.json +117 -73
  22. package/apis/wisdom-2020-10-19.min.json +77 -59
  23. package/clients/all.d.ts +2 -0
  24. package/clients/all.js +3 -1
  25. package/clients/billingconductor.d.ts +102 -69
  26. package/clients/cloudcontrol.d.ts +1 -1
  27. package/clients/customerprofiles.d.ts +204 -4
  28. package/clients/datasync.d.ts +171 -27
  29. package/clients/dynamodb.d.ts +4 -4
  30. package/clients/ec2.d.ts +26 -0
  31. package/clients/emrserverless.d.ts +33 -2
  32. package/clients/entityresolution.d.ts +815 -0
  33. package/clients/entityresolution.js +18 -0
  34. package/clients/glue.d.ts +123 -1
  35. package/clients/healthlake.d.ts +70 -70
  36. package/clients/lambda.d.ts +1 -1
  37. package/clients/managedblockchainquery.d.ts +494 -0
  38. package/clients/managedblockchainquery.js +19 -0
  39. package/clients/mediaconvert.d.ts +421 -414
  40. package/clients/opensearchserverless.d.ts +1 -1
  41. package/clients/polly.d.ts +2 -2
  42. package/clients/rds.d.ts +14 -10
  43. package/clients/route53.d.ts +13 -13
  44. package/clients/sagemaker.d.ts +4 -4
  45. package/clients/securityhub.d.ts +69 -10
  46. package/clients/sts.d.ts +17 -1
  47. package/clients/transfer.d.ts +85 -19
  48. package/clients/wisdom.d.ts +24 -0
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +97 -16
  51. package/dist/aws-sdk.js +333 -293
  52. package/dist/aws-sdk.min.js +67 -67
  53. package/lib/config_service_placeholders.d.ts +4 -0
  54. package/lib/core.js +1 -1
  55. package/lib/dynamodb/document_client.d.ts +2 -2
  56. package/package.json +1 -1
@@ -352,6 +352,8 @@ export abstract class ConfigurationServicePlaceholders {
352
352
  verifiedpermissions?: AWS.VerifiedPermissions.Types.ClientConfiguration;
353
353
  appfabric?: AWS.AppFabric.Types.ClientConfiguration;
354
354
  medicalimaging?: AWS.MedicalImaging.Types.ClientConfiguration;
355
+ entityresolution?: AWS.EntityResolution.Types.ClientConfiguration;
356
+ managedblockchainquery?: AWS.ManagedBlockchainQuery.Types.ClientConfiguration;
355
357
  }
356
358
  export interface ConfigurationServiceApiVersions {
357
359
  acm?: AWS.ACM.Types.apiVersion;
@@ -706,4 +708,6 @@ export interface ConfigurationServiceApiVersions {
706
708
  verifiedpermissions?: AWS.VerifiedPermissions.Types.apiVersion;
707
709
  appfabric?: AWS.AppFabric.Types.apiVersion;
708
710
  medicalimaging?: AWS.MedicalImaging.Types.apiVersion;
711
+ entityresolution?: AWS.EntityResolution.Types.apiVersion;
712
+ managedblockchainquery?: AWS.ManagedBlockchainQuery.Types.apiVersion;
709
713
  }
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1421.0',
23
+ VERSION: '2.1423.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -381,7 +381,7 @@ export namespace DocumentClient {
381
381
  }
382
382
  export interface BatchExecuteStatementOutput {
383
383
  /**
384
- * The response to each PartiQL statement in the batch.
384
+ * The response to each PartiQL statement in the batch. The values of the list are ordered according to the ordering of the request statements.
385
385
  */
386
386
  Responses?: PartiQLBatchResponse;
387
387
  /**
@@ -3220,7 +3220,7 @@ export namespace DocumentClient {
3220
3220
  */
3221
3221
  ExpressionAttributeValues?: ExpressionAttributeValueMap;
3222
3222
  /**
3223
- * Use ReturnValuesOnConditionCheckFailure to get the item attributes if the Update condition fails. For ReturnValuesOnConditionCheckFailure, the valid values are: NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW.
3223
+ * Use ReturnValuesOnConditionCheckFailure to get the item attributes if the Update condition fails. For ReturnValuesOnConditionCheckFailure, the valid values are: NONE and ALL_OLD.
3224
3224
  */
3225
3225
  ReturnValuesOnConditionCheckFailure?: ReturnValuesOnConditionCheckFailure;
3226
3226
  }
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.1421.0",
4
+ "version": "2.1423.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",