aws-sdk 2.1297.0 → 2.1298.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 +15 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +172 -130
- package/apis/connect-2017-08-08.min.json +17 -8
- package/apis/connectparticipant-2018-09-07.min.json +3 -1
- package/apis/ec2-2016-11-15.min.json +6 -0
- package/apis/glue-2017-03-31.min.json +427 -311
- package/apis/groundstation-2019-05-23.min.json +53 -41
- package/apis/groundstation-2019-05-23.waiters2.json +22 -0
- package/apis/medialive-2017-10-14.min.json +210 -206
- package/apis/opensearch-2021-01-01.min.json +97 -24
- package/apis/panorama-2019-07-24.min.json +20 -17
- package/apis/sagemaker-2017-07-24.min.json +568 -563
- package/clients/appflow.d.ts +60 -1
- package/clients/cloudwatchlogs.d.ts +8 -8
- package/clients/codeartifact.d.ts +8 -8
- package/clients/connect.d.ts +23 -0
- package/clients/connectparticipant.d.ts +10 -2
- package/clients/ec2.d.ts +10 -2
- package/clients/glue.d.ts +140 -1
- package/clients/groundstation.d.ts +26 -0
- package/clients/groundstation.js +1 -0
- package/clients/medialive.d.ts +5 -0
- package/clients/opensearch.d.ts +83 -5
- package/clients/panorama.d.ts +7 -3
- package/clients/sagemaker.d.ts +9 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +1039 -1032
- package/dist/aws-sdk.js +26 -11
- package/dist/aws-sdk.min.js +77 -77
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1298.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1298.0
|
|
6
|
+
* feature: Appflow: Adding support for Salesforce Pardot connector in Amazon AppFlow.
|
|
7
|
+
* feature: CloudWatchLogs: Bug fix - Removed the regex pattern validation from CoralModel to avoid potential security issue.
|
|
8
|
+
* feature: CodeArtifact: Documentation updates for CodeArtifact
|
|
9
|
+
* feature: Connect: Amazon Connect Chat introduces Persistent Chat, allowing customers to resume previous conversations with context and transcripts carried over from previous chats, eliminating the need to repeat themselves and allowing agents to provide personalized service with access to entire conversation history.
|
|
10
|
+
* feature: ConnectParticipant: This release updates Amazon Connect Participant's GetTranscript api to provide transcripts of past chats on a persistent chat session.
|
|
11
|
+
* feature: EC2: Adds SSM Parameter Resource Aliasing support to EC2 Launch Templates. Launch Templates can now store parameter aliases in place of AMI Resource IDs. CreateLaunchTemplateVersion and DescribeLaunchTemplateVersions now support a convenience flag, ResolveAlias, to return the resolved parameter value.
|
|
12
|
+
* feature: Glue: Release Glue Studio Hudi Data Lake Format for SDK/CLI
|
|
13
|
+
* feature: GroundStation: Add configurable prepass and postpass times for DataflowEndpointGroup. Add Waiter to allow customers to wait for a contact that was reserved through ReserveContact
|
|
14
|
+
* feature: MediaLive: AWS Elemental MediaLive adds support for SCTE 35 preRollMilliSeconds.
|
|
15
|
+
* feature: OpenSearch: This release adds the enhanced dry run option, that checks for validation errors that might occur when deploying configuration changes and provides a summary of these errors, if any. The feature will also indicate whether a blue/green deployment will be required to apply a change.
|
|
16
|
+
* feature: Panorama: Added AllowMajorVersionUpdate option to OTAJobConfig to make appliance software major version updates opt-in.
|
|
17
|
+
* feature: SageMaker: HyperParameterTuningJobs now allow passing environment variables into the corresponding TrainingJobs
|
|
18
|
+
|
|
5
19
|
## 2.1297.0
|
|
6
20
|
* feature: CloudWatch: Enable cross-account streams in CloudWatch Metric Streams via Observability Access Manager.
|
|
7
21
|
* feature: Ivschat: Updates the range for a Chat Room's maximumMessageRatePerSecond field.
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ for further details.
|
|
|
57
57
|
To use the SDK in the browser, simply add the following script tag to your
|
|
58
58
|
HTML pages:
|
|
59
59
|
|
|
60
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
60
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1298.0.min.js"></script>
|
|
61
61
|
|
|
62
62
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
63
63
|
This can allow you to reduce the SDK's size, specify different API versions of
|