aws-sdk 2.1396.0 → 2.1398.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 (51) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +1 -1
  3. package/apis/auditmanager-2017-07-25.min.json +128 -88
  4. package/apis/cloudtrail-2013-11-01.min.json +33 -33
  5. package/apis/codeguru-security-2018-05-10.examples.json +5 -0
  6. package/apis/codeguru-security-2018-05-10.min.json +703 -0
  7. package/apis/codeguru-security-2018-05-10.paginators.json +22 -0
  8. package/apis/drs-2020-02-26.min.json +392 -97
  9. package/apis/drs-2020-02-26.paginators.json +6 -0
  10. package/apis/ec2-2016-11-15.min.json +1178 -1013
  11. package/apis/ec2-2016-11-15.paginators.json +6 -0
  12. package/apis/lightsail-2016-11-28.min.json +4 -2
  13. package/apis/location-2020-11-19.min.json +56 -8
  14. package/apis/metadata.json +7 -0
  15. package/apis/s3-2006-03-01.examples.json +121 -121
  16. package/apis/securityhub-2018-10-26.examples.json +276 -0
  17. package/apis/securityhub-2018-10-26.min.json +957 -559
  18. package/apis/verifiedpermissions-2021-12-01.examples.json +5 -0
  19. package/apis/verifiedpermissions-2021-12-01.min.json +1215 -0
  20. package/apis/verifiedpermissions-2021-12-01.paginators.json +28 -0
  21. package/apis/verifiedpermissions-2021-12-01.waiters2.json +5 -0
  22. package/apis/wafv2-2019-07-29.min.json +241 -169
  23. package/apis/wellarchitected-2020-03-31.min.json +655 -75
  24. package/apis/wellarchitected-2020-03-31.paginators.json +15 -0
  25. package/clients/all.d.ts +2 -0
  26. package/clients/all.js +3 -1
  27. package/clients/auditmanager.d.ts +105 -52
  28. package/clients/cloudtrail.d.ts +28 -13
  29. package/clients/codegurusecurity.d.ts +761 -0
  30. package/clients/codegurusecurity.js +18 -0
  31. package/clients/drs.d.ts +354 -3
  32. package/clients/ec2.d.ts +225 -48
  33. package/clients/efs.d.ts +5 -5
  34. package/clients/guardduty.d.ts +11 -11
  35. package/clients/imagebuilder.d.ts +1 -1
  36. package/clients/lightsail.d.ts +12 -4
  37. package/clients/location.d.ts +60 -7
  38. package/clients/s3.d.ts +1 -1
  39. package/clients/securityhub.d.ts +470 -0
  40. package/clients/simspaceweaver.d.ts +2 -2
  41. package/clients/verifiedpermissions.d.ts +1392 -0
  42. package/clients/verifiedpermissions.js +19 -0
  43. package/clients/wafv2.d.ts +105 -27
  44. package/clients/wellarchitected.d.ts +533 -7
  45. package/dist/aws-sdk-core-react-native.js +2 -2
  46. package/dist/aws-sdk-react-native.js +97 -16
  47. package/dist/aws-sdk.js +1283 -1057
  48. package/dist/aws-sdk.min.js +80 -80
  49. package/lib/config_service_placeholders.d.ts +4 -0
  50. package/lib/core.js +1 -1
  51. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,24 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1396.0-->
2
+ <!--LATEST=2.1398.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1398.0
6
+ * feature: AuditManager: This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser.
7
+ * feature: Location: Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences.
8
+
9
+ ## 2.1397.0
10
+ * feature: CloudTrail: This feature allows users to view dashboards for CloudTrail Lake event data stores.
11
+ * feature: CodeGuruSecurity: Initial release of Amazon CodeGuru Security APIs
12
+ * feature: Drs: Added APIs to support network replication and recovery using AWS Elastic Disaster Recovery.
13
+ * feature: EC2: This release introduces a new feature, EC2 Instance Connect Endpoint, that enables you to connect to a resource over TCP, without requiring the resource to have a public IPv4 address.
14
+ * feature: Lightsail: This release adds pagination for the Get Certificates API operation.
15
+ * feature: S3: Integrate double encryption feature to SDKs.
16
+ * feature: SecurityHub: Add support for Security Hub Automation Rules
17
+ * feature: SimSpaceWeaver: This release fixes using aws-us-gov ARNs in API calls and adds documentation for snapshot APIs.
18
+ * feature: VerifiedPermissions: GA release of Amazon Verified Permissions.
19
+ * feature: WAFV2: You can now detect and block fraudulent account creation attempts with the new AWS WAF Fraud Control account creation fraud prevention (ACFP) managed rule group AWSManagedRulesACFPRuleSet.
20
+ * feature: WellArchitected: AWS Well-Architected now supports Profiles that help customers prioritize which questions to focus on first by providing a list of prioritized questions that are better aligned with their business goals and outcomes.
21
+
5
22
  ## 2.1396.0
6
23
  * feature: AmplifyUIBuilder: AWS Amplify UIBuilder is launching Codegen UI, a new feature that enables you to generate your amplify uibuilder components and forms.
7
24
  * feature: FSx: Amazon FSx for NetApp ONTAP now supports joining a storage virtual machine (SVM) to Active Directory after the SVM has been created.
package/README.md CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
71
71
  To use the SDK in the browser, simply add the following script tag to your
72
72
  HTML pages:
73
73
 
74
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1396.0.min.js"></script>
74
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1398.0.min.js"></script>
75
75
 
76
76
  You can also build a custom browser SDK with your specified set of AWS services.
77
77
  This can allow you to reduce the SDK's size, specify different API versions of