aws-sdk 2.1428.0 → 2.1430.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 +11 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +2 -2
- package/apis/connect-2017-08-08.min.json +263 -237
- package/apis/datasync-2018-11-09.min.json +6 -0
- package/apis/dms-2016-01-01.min.json +1079 -217
- package/apis/dms-2016-01-01.paginators.json +45 -0
- package/apis/ec2-2016-11-15.min.json +27 -0
- package/apis/sagemaker-2017-07-24.min.json +3 -0
- package/clients/acmpca.d.ts +1 -1
- package/clients/autoscaling.d.ts +1 -1
- package/clients/cloud9.d.ts +1 -1
- package/clients/connect.d.ts +31 -0
- package/clients/datasync.d.ts +26 -18
- package/clients/dms.d.ts +1224 -12
- package/clients/ec2.d.ts +33 -1
- package/clients/ecs.d.ts +20 -20
- package/clients/sagemaker.d.ts +2 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +293 -240
- package/dist/aws-sdk.min.js +80 -80
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1430.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1430.0
|
6
|
+
* feature: Connect: Added a new API UpdateRoutingProfileAgentAvailabilityTimer to update agent availability timer of a routing profile.
|
7
|
+
* feature: DataSync: Display cloud storage used capacity at a cluster level.
|
8
|
+
* feature: SageMaker: Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object
|
9
|
+
|
10
|
+
## 2.1429.0
|
11
|
+
* feature: DMS: The release makes public API for DMS Schema Conversion feature.
|
12
|
+
* feature: EC2: This release adds new parameter isPrimaryIPv6 to allow assigning an IPv6 address as a primary IPv6 address to a network interface which cannot be changed to give equivalent functionality available for network interfaces with primary IPv4 address.
|
13
|
+
* feature: SageMaker: Amazon SageMaker now supports running training jobs on p5.48xlarge instance types.
|
14
|
+
|
5
15
|
## 2.1428.0
|
6
16
|
* feature: Budgets: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.
|
7
17
|
* feature: CognitoIdentityServiceProvider: New feature that logs Cognito user pool error messages to CloudWatch logs.
|
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.1430.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
|
@@ -212,7 +212,7 @@
|
|
212
212
|
}
|
213
213
|
},
|
214
214
|
"description": "This example creates an Auto Scaling group with a mixed instances policy. It specifies the c5.large, c5a.large, and c6g.large instance types and defines a different launch template for the c6g.large instance type.",
|
215
|
-
"id": "
|
215
|
+
"id": "autoscaling-create-auto-scaling-group-3",
|
216
216
|
"title": "To create an Auto Scaling group with a mixed instances policy"
|
217
217
|
},
|
218
218
|
{
|
@@ -259,7 +259,7 @@
|
|
259
259
|
}
|
260
260
|
},
|
261
261
|
"description": "This example creates an Auto Scaling group using attribute-based instance type selection. It requires the instance types to have a minimum of four vCPUs and a maximum of eight vCPUs, a minimum of 16,384 MiB of memory, and an Intel manufactured CPU.",
|
262
|
-
"id": "
|
262
|
+
"id": "autoscaling-create-auto-scaling-group-4",
|
263
263
|
"title": "To create an Auto Scaling group using attribute-based instance type selection"
|
264
264
|
}
|
265
265
|
],
|