aws-sdk 2.1384.0 → 2.1386.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 +14 -1
- package/README.md +1 -1
- package/apis/codepipeline-2015-07-09.min.json +3 -0
- package/apis/gamelift-2015-10-01.min.json +213 -204
- package/apis/glue-2017-03-31.min.json +615 -557
- package/apis/iotwireless-2020-11-22.min.json +137 -120
- package/apis/migration-hub-refactor-spaces-2021-10-26.min.json +9 -0
- package/apis/sagemaker-2017-07-24.min.json +627 -598
- package/clients/applicationautoscaling.d.ts +6 -6
- package/clients/codepipeline.d.ts +69 -65
- package/clients/connect.d.ts +1 -1
- package/clients/gamelift.d.ts +22 -10
- package/clients/glue.d.ts +57 -2
- package/clients/iotwireless.d.ts +24 -5
- package/clients/migrationhubrefactorspaces.d.ts +16 -4
- package/clients/sagemaker.d.ts +34 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +219 -207
- package/dist/aws-sdk.min.js +55 -55
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,20 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1386.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1386.0
|
6
|
+
* feature: Connect: Documentation update for a new Initiation Method value in DescribeContact API
|
7
|
+
* feature: IoTWireless: Add Multicast Group support in Network Analyzer Configuration.
|
8
|
+
* feature: SageMaker: Added ml.p4d and ml.inf1 as supported instance type families for SageMaker Notebook Instances.
|
9
|
+
|
10
|
+
## 2.1385.0
|
11
|
+
* feature: ApplicationAutoScaling: With this release, ElastiCache customers will be able to use predefined metricType "ElastiCacheDatabaseCapacityUsageCountedForEvictPercentage" for their ElastiCache instances.
|
12
|
+
* feature: CodePipeline: Add PollingDisabledAt time information in PipelineMetadata object of GetPipeline API.
|
13
|
+
* feature: GameLift: GameLift FleetIQ users can now filter game server claim requests to exclude servers on instances that are draining.
|
14
|
+
* feature: Glue: Added ability to create data quality rulesets for shared, cross-account Glue Data Catalog tables. Added support for dataset comparison rules through a new parameter called AdditionalDataSources. Enhanced the data quality results with a map containing profiled metric values.
|
15
|
+
* feature: MigrationHubRefactorSpaces: This SDK update allows for path parameter syntax to be passed to the CreateRoute API. Path parameter syntax require parameters to be enclosed in {} characters. This update also includes a new AppendSourcePath field which lets users forward the source path to the Service URL endpoint.
|
16
|
+
* feature: SageMaker: Amazon SageMaker Automatic Model Tuning now supports enabling Autotune for tuning jobs which can choose tuning job configurations.
|
17
|
+
|
5
18
|
## 2.1384.0
|
6
19
|
* feature: AppSync: This release introduces AppSync Merged APIs, which provide the ability to compose multiple source APIs into a single federated/merged API.
|
7
20
|
* feature: CUR: Add support for split cost allocation data on a report.
|
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.
|
74
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1386.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
|