Skip to content

Commit

Permalink
Updates SDK to v2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 8, 2017
1 parent 0209eed commit d0fb1a0
Show file tree
Hide file tree
Showing 23 changed files with 1,017 additions and 275 deletions.
17 changes: 17 additions & 0 deletions .changes/2.10.0.json
@@ -0,0 +1,17 @@
[
{
"type": "bugfix",
"category": "JSON",
"description": "Fixes issue caused when trying to unmarshall null binary shapes."
},
{
"type": "bugfix",
"category": "TypeScript",
"description": "Add `credentialProvider` as an optional parameter of `ConfigurationOptions`."
},
{
"type": "feature",
"category": "LexRuntime",
"description": "Amazon Lex is a service for building conversational interactions into any application using voice or text."
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-JSON-00a26a06.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-TypeScript-5f321e6b.json

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.9.0-->
<!--LATEST=2.10.0-->
<!--ENTRYINSERT-->

## 2.10.0
* bugfix: JSON: Fixes issue caused when trying to unmarshall null binary shapes.
* bugfix: TypeScript: Add `credentialProvider` as an optional parameter of `ConfigurationOptions`.
* feature: LexRuntime: Amazon Lex is a service for building conversational interactions into any application using voice or text.

## 2.9.0
* feature: EC2: Adds instance health check functionality to replace unhealthy EC2 Spot fleet instances with fresh ones
* feature: CloudDirectory: Amazon Cloud Directory is a highly scalable, high performance, multi-tenant directory service in the cloud. Its web-based directories make it easy for you to organize and manage application resources such as users, groups, locations, devices, policies, and the rich relationships between them.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -24,7 +24,7 @@ to work with the new major 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.9.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.10.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
2 changes: 1 addition & 1 deletion apis/glacier-2012-06-01.examples.json
Expand Up @@ -642,7 +642,7 @@
},
"description": "The example lists all vaults owned by the specified AWS account.",
"id": "list-vaults-1481753006990",
"title": "To list all vaults owned by the calling users account"
"title": "To list all vaults owned by the calling user's account"
}
],
"PurchaseProvisionedCapacity": [
Expand Down
102 changes: 102 additions & 0 deletions apis/runtime.lex-2016-11-28.min.json
@@ -0,0 +1,102 @@
{
"version": "2.0",
"metadata": {
"apiVersion": "2016-11-28",
"endpointPrefix": "runtime.lex",
"jsonVersion": "1.1",
"protocol": "rest-json",
"serviceFullName": "Amazon Lex Runtime Service",
"signatureVersion": "v4",
"signingName": "lex",
"uid": "runtime.lex-2016-11-28"
},
"operations": {
"PostText": {
"http": {
"requestUri": "/bot/{botName}/alias/{botAlias}/user/{userId}/text"
},
"input": {
"type": "structure",
"required": [
"botName",
"botAlias",
"userId",
"inputText"
],
"members": {
"botName": {
"location": "uri",
"locationName": "botName"
},
"botAlias": {
"location": "uri",
"locationName": "botAlias"
},
"userId": {
"location": "uri",
"locationName": "userId"
},
"sessionAttributes": {
"shape": "S5"
},
"inputText": {}
}
},
"output": {
"type": "structure",
"members": {
"intentName": {},
"slots": {
"shape": "S5"
},
"sessionAttributes": {
"shape": "S5"
},
"message": {},
"dialogState": {},
"slotToElicit": {},
"responseCard": {
"type": "structure",
"members": {
"version": {},
"contentType": {},
"genericAttachments": {
"type": "list",
"member": {
"type": "structure",
"members": {
"title": {},
"subTitle": {},
"attachmentLinkUrl": {},
"imageUrl": {},
"buttons": {
"type": "list",
"member": {
"type": "structure",
"required": [
"text",
"value"
],
"members": {
"text": {},
"value": {}
}
}
}
}
}
}
}
}
}
}
}
},
"shapes": {
"S5": {
"type": "map",
"key": {},
"value": {}
}
}
}

0 comments on commit d0fb1a0

Please sign in to comment.