Skip to content

Commit

Permalink
Updates SDK to v2.732.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 12, 2020
1 parent a478731 commit 82c0f59
Show file tree
Hide file tree
Showing 34 changed files with 3,639 additions and 1,642 deletions.
42 changes: 42 additions & 0 deletions .changes/2.732.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"type": "feature",
"category": "Cloud9",
"description": "Add ConnectionType input parameter to CreateEnvironmentEC2 endpoint. New parameter enables creation of environments with SSM connection."
},
{
"type": "feature",
"category": "Comprehend",
"description": "Amazon Comprehend Custom Entity Recognition now supports Spanish, German, French, Italian and Portuguese and up to 25 entity types per model."
},
{
"type": "feature",
"category": "EC2",
"description": "Introduces support for IPv6-in-IPv4 IPsec tunnels. A user can now send traffic from their on-premise IPv6 network to AWS VPCs that have IPv6 support enabled."
},
{
"type": "feature",
"category": "FSx",
"description": "This release adds the capability to create persistent file systems for throughput-intensive workloads using Hard Disk Drive (HDD) storage and an optional read-only Solid-State Drive (SSD) cache."
},
{
"type": "feature",
"category": "Iot",
"description": "Audit finding suppressions: Device Defender enables customers to turn off non-compliant findings for specific resources on a per check basis."
},
{
"type": "feature",
"category": "Lambda",
"description": "Support for creating Lambda Functions using 'java8.al2' and 'provided.al2'"
},
{
"type": "feature",
"category": "Transfer",
"description": "Adds security policies to control cryptographic algorithms advertised by your server, additional characters in usernames and length increase, and FIPS compliant endpoints in the US and Canada regions."
},
{
"type": "feature",
"category": "WorkSpaces",
"description": "Adds optional EnableWorkDocs property to WorkspaceCreationProperties in the ModifyWorkspaceCreationProperties API"
}
]
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.731.0-->
<!--LATEST=2.732.0-->
<!--ENTRYINSERT-->

## 2.732.0
* feature: Cloud9: Add ConnectionType input parameter to CreateEnvironmentEC2 endpoint. New parameter enables creation of environments with SSM connection.
* feature: Comprehend: Amazon Comprehend Custom Entity Recognition now supports Spanish, German, French, Italian and Portuguese and up to 25 entity types per model.
* feature: EC2: Introduces support for IPv6-in-IPv4 IPsec tunnels. A user can now send traffic from their on-premise IPv6 network to AWS VPCs that have IPv6 support enabled.
* feature: FSx: This release adds the capability to create persistent file systems for throughput-intensive workloads using Hard Disk Drive (HDD) storage and an optional read-only Solid-State Drive (SSD) cache.
* feature: Iot: Audit finding suppressions: Device Defender enables customers to turn off non-compliant findings for specific resources on a per check basis.
* feature: Lambda: Support for creating Lambda Functions using 'java8.al2' and 'provided.al2'
* feature: Transfer: Adds security policies to control cryptographic algorithms advertised by your server, additional characters in usernames and length increase, and FIPS compliant endpoints in the US and Canada regions.
* feature: WorkSpaces: Adds optional EnableWorkDocs property to WorkspaceCreationProperties in the ModifyWorkspaceCreationProperties API

## 2.731.0
* feature: EC2: This release rolls back the EC2 On-Demand Capacity Reservations (ODCRs) release 1.11.831 published on 2020-07-30, which was deployed in error.
* feature: Lambda: Support Managed Streaming for Kafka as an Event Source. Support retry until record expiration for Kinesis and Dynamodb streams event source mappings.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.731.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.732.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
12 changes: 7 additions & 5 deletions apis/cloud9-2017-09-23.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"ownerArn": {},
"tags": {
"shape": "S9"
}
},
"connectionType": {}
}
},
"output": {
Expand Down Expand Up @@ -62,7 +63,7 @@
"type": "structure",
"members": {
"membership": {
"shape": "Si"
"shape": "Sj"
}
}
},
Expand Down Expand Up @@ -124,7 +125,7 @@
"memberships": {
"type": "list",
"member": {
"shape": "Si"
"shape": "Sj"
}
},
"nextToken": {}
Expand Down Expand Up @@ -176,6 +177,7 @@
"shape": "S3"
},
"type": {},
"connectionType": {},
"arn": {},
"ownerArn": {},
"lifecycle": {
Expand Down Expand Up @@ -309,7 +311,7 @@
"type": "structure",
"members": {
"membership": {
"shape": "Si"
"shape": "Sj"
}
}
},
Expand All @@ -335,7 +337,7 @@
}
}
},
"Si": {
"Sj": {
"type": "structure",
"members": {
"permissions": {},
Expand Down
21 changes: 21 additions & 0 deletions apis/cloud9-2017-09-23.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,9 @@
},
{
"shape": "BadRequestException"
},
{
"shape": "ConcurrentAccessException"
}
],
"documentation": "<p>Adds tags to an AWS Cloud9 development environment.</p> <important> <p>Tags that you add to an AWS Cloud9 environment by using this method will NOT be automatically propagated to underlying resources.</p> </important>"
Expand All @@ -383,6 +386,9 @@
},
{
"shape": "BadRequestException"
},
{
"shape": "ConcurrentAccessException"
}
],
"documentation": "<p>Removes tags from an AWS Cloud9 development environment.</p>"
Expand Down Expand Up @@ -482,6 +488,13 @@
"type": "string",
"pattern": "[\\x20-\\x7E]{10,128}"
},
"ConnectionType": {
"type": "string",
"enum": [
"CONNECT_SSH",
"CONNECT_SSM"
]
},
"CreateEnvironmentEC2Request": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -520,6 +533,10 @@
"tags": {
"shape": "TagList",
"documentation": "<p>An array of key-value pairs that will be associated with the new AWS Cloud9 development environment.</p>"
},
"connectionType": {
"shape": "ConnectionType",
"documentation": "<p>The connection type used for connecting to an Amazon EC2 environment.</p>"
}
}
},
Expand Down Expand Up @@ -703,6 +720,10 @@
"shape": "EnvironmentType",
"documentation": "<p>The type of environment. Valid values include the following:</p> <ul> <li> <p> <code>ec2</code>: An Amazon Elastic Compute Cloud (Amazon EC2) instance connects to the environment.</p> </li> <li> <p> <code>ssh</code>: Your own server connects to the environment.</p> </li> </ul>"
},
"connectionType": {
"shape": "ConnectionType",
"documentation": "<p>The connection type used for connecting to an Amazon EC2 environment.</p>"
},
"arn": {
"shape": "String",
"documentation": "<p>The Amazon Resource Name (ARN) of the environment.</p>"
Expand Down
4 changes: 2 additions & 2 deletions apis/comprehend-2017-11-27.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2042,7 +2042,7 @@
},
"LanguageCode": {
"shape": "LanguageCode",
"documentation": "<p> The language of the input documents. All documents must be in the same language. Only English (\"en\") is currently supported. </p>"
"documentation": "<p> You can specify any of the following languages supported by Amazon Comprehend: English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), German (\"de\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>"
},
"VolumeKmsKeyId": {
"shape": "KmsKeyId",
Expand Down Expand Up @@ -3074,7 +3074,7 @@
"members": {
"EntityTypes": {
"shape": "EntityTypesList",
"documentation": "<p>The entity types in the input data for an entity recognizer. A maximum of 12 entity types can be used at one time to train an entity recognizer.</p>"
"documentation": "<p>The entity types in the input data for an entity recognizer. A maximum of 25 entity types can be used at one time to train an entity recognizer.</p>"
},
"Documents": {
"shape": "EntityRecognizerDocuments",
Expand Down
Loading

0 comments on commit 82c0f59

Please sign in to comment.