aws-sdk 2.1400.0 → 2.1402.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 +16 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +19 -0
- package/apis/ec2-2016-11-15.min.json +1389 -1370
- package/apis/elasticmapreduce-2009-03-31.min.json +56 -3
- package/apis/elasticmapreduce-2009-03-31.paginators.json +4 -0
- package/apis/inspector2-2020-06-08.min.json +529 -150
- package/apis/mediaconvert-2017-08-29.min.json +103 -93
- package/apis/mq-2017-11-27.min.json +132 -32
- package/apis/redshift-2012-12-01.min.json +232 -125
- package/apis/redshift-2012-12-01.paginators.json +6 -0
- package/apis/sagemaker-2017-07-24.min.json +995 -973
- package/apis/transfer-2018-11-05.min.json +44 -31
- package/clients/appflow.d.ts +32 -0
- package/clients/configservice.d.ts +1 -1
- package/clients/dynamodb.d.ts +2 -2
- package/clients/ec2.d.ts +32 -20
- package/clients/emr.d.ts +77 -1
- package/clients/inspector2.d.ts +417 -9
- package/clients/mediaconvert.d.ts +11 -2
- package/clients/mq.d.ts +136 -30
- package/clients/redshift.d.ts +189 -11
- package/clients/sagemaker.d.ts +45 -13
- package/clients/transfer.d.ts +13 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +1690 -1501
- package/dist/aws-sdk.min.js +74 -74
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,22 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1402.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1402.0
|
6
|
+
* feature: EMR: This release introduces a new Amazon EMR EPI called ListSupportedInstanceTypes that returns a list of all instance types supported by a given EMR release.
|
7
|
+
* feature: Inspector2: This release adds support for Software Bill of Materials (SBOM) export and the general availability of code scanning for AWS Lambda functions.
|
8
|
+
* feature: MQ: The Cross Region Disaster Recovery feature allows to replicate a brokers state from one region to another in order to provide customers with multi-region resiliency in the event of a regional outage.
|
9
|
+
* feature: MediaConvert: This release introduces the bandwidth reduction filter for the HEVC encoder, increases the limits of outputs per job, and updates support for the Nagra SDK to version 1.14.7.
|
10
|
+
* feature: SageMaker: This release provides support in SageMaker for output files in training jobs to be uploaded without compression and enable customer to deploy uncompressed model from S3 to real-time inference Endpoints. In addition, ml.trn1n.32xlarge is added to supported instance type list in training job.
|
11
|
+
* feature: Transfer: This release adds a new parameter StructuredLogDestinations to CreateServer, UpdateServer APIs.
|
12
|
+
|
13
|
+
## 2.1401.0
|
14
|
+
* feature: Appflow: This release adds new API to reset connector metadata cache
|
15
|
+
* feature: ConfigService: Updated ResourceType enum with new resource types onboarded by AWS Config in May 2023.
|
16
|
+
* feature: EC2: Adds support for targeting Dedicated Host allocations by assetIds in AWS Outposts
|
17
|
+
* feature: Lambda: This release adds RecursiveInvocationException to the Invoke API and InvokeWithResponseStream API.
|
18
|
+
* feature: Redshift: Added support for custom domain names for Redshift Provisioned clusters. This feature enables customers to create a custom domain name and use ACM to generate fully secure connections to it.
|
19
|
+
|
5
20
|
## 2.1400.0
|
6
21
|
* feature: CloudFormation: Specify desired CloudFormation behavior in the event of ChangeSet execution failure using the CreateChangeSet OnStackFailure parameter
|
7
22
|
* feature: EC2: API changes to AWS Verified Access to include data from trust providers in 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.1402.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
|
@@ -698,6 +698,25 @@
|
|
698
698
|
}
|
699
699
|
}
|
700
700
|
},
|
701
|
+
"ResetConnectorMetadataCache": {
|
702
|
+
"http": {
|
703
|
+
"requestUri": "/reset-connector-metadata-cache"
|
704
|
+
},
|
705
|
+
"input": {
|
706
|
+
"type": "structure",
|
707
|
+
"members": {
|
708
|
+
"connectorProfileName": {},
|
709
|
+
"connectorType": {},
|
710
|
+
"connectorEntityName": {},
|
711
|
+
"entitiesPath": {},
|
712
|
+
"apiVersion": {}
|
713
|
+
}
|
714
|
+
},
|
715
|
+
"output": {
|
716
|
+
"type": "structure",
|
717
|
+
"members": {}
|
718
|
+
}
|
719
|
+
},
|
701
720
|
"StartFlow": {
|
702
721
|
"http": {
|
703
722
|
"requestUri": "/start-flow"
|