aws-sdk 2.1199.0 → 2.1202.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.
- package/CHANGELOG.md +18 -1
- package/README.md +1 -1
- package/apis/cloudfront-2020-05-31.min.json +350 -82
- package/apis/config-2014-11-12.min.json +107 -91
- package/apis/ec2-2016-11-15.min.json +2 -1
- package/apis/forecast-2018-06-26.min.json +428 -13
- package/apis/forecast-2018-06-26.paginators.json +18 -0
- package/apis/forecastquery-2018-06-26.min.json +54 -21
- package/apis/metadata.json +4 -0
- package/apis/models.lex.v2-2020-08-07.min.json +44 -0
- package/apis/quicksight-2018-04-01.min.json +64 -29
- package/apis/rds-2014-10-31.min.json +23 -0
- package/apis/securityhub-2018-10-26.min.json +308 -162
- package/apis/support-app-2021-08-20.examples.json +5 -0
- package/apis/support-app-2021-08-20.min.json +267 -0
- package/apis/support-app-2021-08-20.paginators.json +12 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudfront.d.ts +246 -4
- package/clients/configservice.d.ts +27 -7
- package/clients/docdb.d.ts +1 -1
- package/clients/ec2.d.ts +1 -1
- package/clients/forecastqueryservice.d.ts +35 -1
- package/clients/forecastservice.d.ts +559 -0
- package/clients/iam.d.ts +6 -6
- package/clients/ivs.d.ts +3 -3
- package/clients/lexmodelsv2.d.ts +49 -1
- package/clients/quicksight.d.ts +38 -4
- package/clients/rds.d.ts +21 -0
- package/clients/securityhub.d.ts +346 -70
- package/clients/ssoadmin.d.ts +6 -6
- package/clients/supportapp.d.ts +330 -0
- package/clients/supportapp.js +18 -0
- package/clients/transfer.d.ts +20 -20
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +51 -14
- package/dist/aws-sdk.js +989 -211
- package/dist/aws-sdk.min.js +85 -85
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1202.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1202.0
|
|
6
|
+
* feature: CloudFront: Adds support for CloudFront origin access control (OAC), making it possible to restrict public access to S3 bucket origins in all AWS Regions, those with SSE-KMS, and more.
|
|
7
|
+
* feature: ConfigService: AWS Config now supports ConformancePackTemplate documents in SSM Docs for the deployment and update of conformance packs.
|
|
8
|
+
* feature: QuickSight: Added a new optional property DashboardVisual under ExperienceConfiguration parameter of GenerateEmbedUrlForAnonymousUser and GenerateEmbedUrlForRegisteredUser API operations. This supports embedding of specific visuals in QuickSight dashboards.
|
|
9
|
+
|
|
10
|
+
## 2.1201.0
|
|
11
|
+
* feature: RDS: RDS for Oracle supports Oracle Data Guard switchover and read replica backups.
|
|
12
|
+
|
|
13
|
+
## 2.1200.0
|
|
14
|
+
* feature: EC2: R6a instances are powered by 3rd generation AMD EPYC (Milan) processors delivering all-core turbo frequency of 3.6 GHz. C6id, M6id, and R6id instances are powered by 3rd generation Intel Xeon Scalable processor (Ice Lake) delivering all-core turbo frequency of 3.5 GHz.
|
|
15
|
+
* feature: ForecastQueryService: releasing What-If Analysis APIs
|
|
16
|
+
* feature: ForecastService: releasing What-If Analysis APIs and update ARN regex pattern to be more strict in accordance with security recommendation
|
|
17
|
+
* feature: IoTSiteWise: Enable non-unique asset names under different hierarchies
|
|
18
|
+
* feature: LexModelsV2: This release introduces a new feature to stop a running BotRecommendation Job for Automated Chatbot Designer.
|
|
19
|
+
* feature: SecurityHub: Added new resource details objects to ASFF, including resources for AwsBackupBackupVault, AwsBackupBackupPlan and AwsBackupRecoveryPoint. Added FixAvailable, FixedInVersion and Remediation to Vulnerability.
|
|
20
|
+
* feature: SupportApp: This is the initial SDK release for the AWS Support App in Slack.
|
|
21
|
+
|
|
5
22
|
## 2.1199.0
|
|
6
23
|
* feature: Connect: This release adds SearchSecurityProfiles API which can be used to search for Security Profile resources within a Connect Instance.
|
|
7
24
|
* feature: Kendra: This release adds support for a new authentication type - Personal Access Token (PAT) for confluence server.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1202.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|