Skip to content

Commit 8ddbb42

Browse files
author
awstools
committed
Updates SDK to v2.1056.0
1 parent ecbb9d2 commit 8ddbb42

25 files changed

+1951
-316
lines changed

Diff for: .changes/2.1056.0.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "EC2",
5+
"description": "Hpc6a instances are powered by a third-generation AMD EPYC processors (Milan) delivering all-core turbo frequency of 3.4 GHz"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "FMS",
10+
"description": "Shield Advanced policies for Amazon CloudFront resources now support automatic application layer DDoS mitigation. The max length for SecurityServicePolicyData ManagedServiceData is now 8192 characters, instead of 4096."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Honeycode",
15+
"description": "Honeycode is releasing new APIs to allow user to create, delete and list tags on resources."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "LexModelsV2",
20+
"description": "This release adds support for Custom vocabulary in Amazon Lex V2 APIs for model building. Customers can give Amazon Lex V2 more information about how to process audio conversations with a bot by creating a custom vocabulary in a specific language."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "PI",
25+
"description": "This release adds three Performance Insights APIs. Use ListAvailableResourceMetrics to get available metrics, GetResourceMetadata to get feature metadata, and ListAvailableResourceDimensions to list available dimensions. The AdditionalMetrics field in DescribeDimensionKeys retrieves per-SQL metrics."
26+
}
27+
]

Diff for: CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1055.0-->
2+
<!--LATEST=2.1056.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1056.0
6+
* feature: EC2: Hpc6a instances are powered by a third-generation AMD EPYC processors (Milan) delivering all-core turbo frequency of 3.4 GHz
7+
* feature: FMS: Shield Advanced policies for Amazon CloudFront resources now support automatic application layer DDoS mitigation. The max length for SecurityServicePolicyData ManagedServiceData is now 8192 characters, instead of 4096.
8+
* feature: Honeycode: Honeycode is releasing new APIs to allow user to create, delete and list tags on resources.
9+
* feature: LexModelsV2: This release adds support for Custom vocabulary in Amazon Lex V2 APIs for model building. Customers can give Amazon Lex V2 more information about how to process audio conversations with a bot by creating a custom vocabulary in a specific language.
10+
* feature: PI: This release adds three Performance Insights APIs. Use ListAvailableResourceMetrics to get available metrics, GetResourceMetadata to get feature metadata, and ListAvailableResourceDimensions to list available dimensions. The AdditionalMetrics field in DescribeDimensionKeys retrieves per-SQL metrics.
11+
512
## 2.1055.0
613
* feature: EC2: EC2 Capacity Reservations now supports RHEL instance platforms (RHEL with SQL Server Standard, RHEL with SQL Server Enterprise, RHEL with SQL Server Web, RHEL with HA, RHEL with HA and SQL Server Standard, RHEL with HA and SQL Server Enterprise)
714
* feature: Kendra: Amazon Kendra now supports advanced query language and query-less search.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1055.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1056.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

Diff for: apis/ec2-2016-11-15.normal.json

+1
Original file line numberDiff line numberDiff line change
@@ -32942,6 +32942,7 @@
3294232942
"g5g.16xlarge",
3294332943
"g5g.metal",
3294432944
"hi1.4xlarge",
32945+
"hpc6a.48xlarge",
3294532946
"hs1.8xlarge",
3294632947
"h1.2xlarge",
3294732948
"h1.4xlarge",

Diff for: apis/elasticache-2015-02-02.normal.json

+10-10
Large diffs are not rendered by default.

Diff for: apis/fms-2018-01-01.normal.json

+6-6
Large diffs are not rendered by default.

Diff for: apis/honeycode-2020-03-01.min.json

+85
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,32 @@
606606
}
607607
}
608608
},
609+
"ListTagsForResource": {
610+
"http": {
611+
"method": "GET",
612+
"requestUri": "/tags/{resourceArn}"
613+
},
614+
"input": {
615+
"type": "structure",
616+
"required": [
617+
"resourceArn"
618+
],
619+
"members": {
620+
"resourceArn": {
621+
"location": "uri",
622+
"locationName": "resourceArn"
623+
}
624+
}
625+
},
626+
"output": {
627+
"type": "structure",
628+
"members": {
629+
"tags": {
630+
"shape": "S2p"
631+
}
632+
}
633+
}
634+
},
609635
"QueryTableRows": {
610636
"http": {
611637
"requestUri": "/workbooks/{workbookId}/tables/{tableId}/rows/query"
@@ -700,6 +726,60 @@
700726
"jobStatus": {}
701727
}
702728
}
729+
},
730+
"TagResource": {
731+
"http": {
732+
"requestUri": "/tags/{resourceArn}"
733+
},
734+
"input": {
735+
"type": "structure",
736+
"required": [
737+
"resourceArn",
738+
"tags"
739+
],
740+
"members": {
741+
"resourceArn": {
742+
"location": "uri",
743+
"locationName": "resourceArn"
744+
},
745+
"tags": {
746+
"shape": "S2p"
747+
}
748+
}
749+
},
750+
"output": {
751+
"type": "structure",
752+
"members": {}
753+
}
754+
},
755+
"UntagResource": {
756+
"http": {
757+
"method": "DELETE",
758+
"requestUri": "/tags/{resourceArn}"
759+
},
760+
"input": {
761+
"type": "structure",
762+
"required": [
763+
"resourceArn",
764+
"tagKeys"
765+
],
766+
"members": {
767+
"resourceArn": {
768+
"location": "uri",
769+
"locationName": "resourceArn"
770+
},
771+
"tagKeys": {
772+
"location": "querystring",
773+
"locationName": "tagKeys",
774+
"type": "list",
775+
"member": {}
776+
}
777+
}
778+
},
779+
"output": {
780+
"type": "structure",
781+
"members": {}
782+
}
703783
}
704784
},
705785
"shapes": {
@@ -855,6 +935,11 @@
855935
}
856936
}
857937
}
938+
},
939+
"S2p": {
940+
"type": "map",
941+
"key": {},
942+
"value": {}
858943
}
859944
}
860945
}

0 commit comments

Comments
 (0)