Skip to content

Commit

Permalink
Updates SDK to v2.522.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 3, 2019
1 parent 43432c2 commit 0b58702
Show file tree
Hide file tree
Showing 16 changed files with 535 additions and 273 deletions.
12 changes: 12 additions & 0 deletions .changes/2.522.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "ECS",
"description": "This release of Amazon Elastic Container Service (Amazon ECS) introduces support for attaching Amazon Elastic Inference accelerators to your containers. This enables you to run deep learning inference workloads with hardware acceleration in a more efficient way."
},
{
"type": "feature",
"category": "GameLift",
"description": "You can now make use of PKI resources to provide more secure connections between your game clients and servers. To learn more, please refer to the public Amazon GameLift documentation."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.521.0-->
<!--LATEST=2.522.0-->
<!--ENTRYINSERT-->

## 2.522.0
* feature: ECS: This release of Amazon Elastic Container Service (Amazon ECS) introduces support for attaching Amazon Elastic Inference accelerators to your containers. This enables you to run deep learning inference workloads with hardware acceleration in a more efficient way.
* feature: GameLift: You can now make use of PKI resources to provide more secure connections between your game clients and servers. To learn more, please refer to the public Amazon GameLift documentation.

## 2.521.0
* bugfix: Credentials: fix stsConfig typing on chainable_temporary_credentials
* feature: ApiGatewayManagementApi: You can use getConnection to return information about the connection (when it is connected, IP address, etc) and deleteConnection to disconnect the given connection
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.521.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.522.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
44 changes: 37 additions & 7 deletions apis/ecs-2014-11-13.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,9 @@
"ipcMode": {},
"proxyConfiguration": {
"shape": "S3x"
},
"inferenceAccelerators": {
"shape": "S58"
}
}
},
Expand Down Expand Up @@ -965,7 +968,7 @@
"members": {
"cluster": {},
"attachments": {
"shape": "S6f"
"shape": "S6j"
}
}
},
Expand All @@ -990,7 +993,7 @@
},
"reason": {},
"networkBindings": {
"shape": "S4y"
"shape": "S50"
}
}
},
Expand Down Expand Up @@ -1020,15 +1023,15 @@
"type": "integer"
},
"networkBindings": {
"shape": "S4y"
"shape": "S50"
},
"reason": {},
"status": {}
}
}
},
"attachments": {
"shape": "S6f"
"shape": "S6j"
},
"pullStartedAt": {
"type": "timestamp"
Expand Down Expand Up @@ -2180,7 +2183,7 @@
},
"reason": {},
"networkBindings": {
"shape": "S4y"
"shape": "S50"
},
"networkInterfaces": {
"type": "list",
Expand Down Expand Up @@ -2247,6 +2250,9 @@
"healthStatus": {},
"tags": {
"shape": "S3"
},
"inferenceAccelerators": {
"shape": "S58"
}
}
},
Expand Down Expand Up @@ -2280,11 +2286,21 @@
}
}
},
"inferenceAcceleratorOverrides": {
"type": "list",
"member": {
"type": "structure",
"members": {
"deviceName": {},
"deviceType": {}
}
}
},
"taskRoleArn": {},
"executionRoleArn": {}
}
},
"S4y": {
"S50": {
"type": "list",
"member": {
"type": "structure",
Expand All @@ -2300,7 +2316,21 @@
}
}
},
"S6f": {
"S58": {
"type": "list",
"member": {
"type": "structure",
"required": [
"deviceName",
"deviceType"
],
"members": {
"deviceName": {},
"deviceType": {}
}
}
},
"S6j": {
"type": "list",
"member": {
"type": "structure",
Expand Down
85 changes: 71 additions & 14 deletions apis/ecs-2014-11-13.normal.json

Large diffs are not rendered by default.

Loading

0 comments on commit 0b58702

Please sign in to comment.