Skip to content

Commit

Permalink
Updates SDK to v2.555.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Oct 23, 2019
1 parent 0fcb37f commit 5f9ae8a
Show file tree
Hide file tree
Showing 15 changed files with 1,621 additions and 387 deletions.
12 changes: 12 additions & 0 deletions .changes/2.555.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "Connect",
"description": "This release adds 4 new APIs ListQueues, ListPhoneNumbers, ListContactFlows, and ListHoursOfOperations, which can be used to programmatically list Queues, PhoneNumbers, ContactFlows, and HoursOfOperations configured for an Amazon Connect instance respectively. You can learn more about the new APIs here: https://docs.aws.amazon.com/connect/latest/APIReference/Welcome.html."
},
{
"type": "feature",
"category": "Polly",
"description": "Amazon Polly adds new female voices: US Spanish - Lupe and Brazilian Portuguese - Camila; both voices are available in Standard and Neural engine."
}
]
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.554.0-->
<!--LATEST=2.555.0-->
<!--ENTRYINSERT-->

## 2.555.0
* feature: Connect: This release adds 4 new APIs ListQueues, ListPhoneNumbers, ListContactFlows, and ListHoursOfOperations, which can be used to programmatically list Queues, PhoneNumbers, ContactFlows, and HoursOfOperations configured for an Amazon Connect instance respectively. You can learn more about the new APIs here: https://docs.aws.amazon.com/connect/latest/APIReference/Welcome.html.
* feature: Polly: Amazon Polly adds new female voices: US Spanish - Lupe and Brazilian Portuguese - Camila; both voices are available in Standard and Neural engine.

## 2.554.0
* feature: IoTEvents: Add support for new serial evaluation method for events in a detector model.
* feature: OpsWorksCM: AWS OpsWorks for Chef Automate (OWCA) now allows customers to use a custom domain and respective certificate, for their AWS OpsWorks For Chef Automate servers. Customers can now provide a CustomDomain, CustomCertificate and CustomPrivateKey in CreateServer API to configure their Chef Automate servers with a custom domain and certificate.
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.554.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.555.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
204 changes: 204 additions & 0 deletions apis/connect-2017-08-08.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,210 @@
}
}
},
"ListContactFlows": {
"http": {
"method": "GET",
"requestUri": "/contact-flows-summary/{InstanceId}"
},
"input": {
"type": "structure",
"required": [
"InstanceId"
],
"members": {
"InstanceId": {
"location": "uri",
"locationName": "InstanceId"
},
"ContactFlowTypes": {
"location": "querystring",
"locationName": "contactFlowTypes",
"type": "list",
"member": {}
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"ContactFlowSummaryList": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Id": {},
"Arn": {},
"Name": {},
"ContactFlowType": {}
}
}
},
"NextToken": {}
}
}
},
"ListHoursOfOperations": {
"http": {
"method": "GET",
"requestUri": "/hours-of-operations-summary/{InstanceId}"
},
"input": {
"type": "structure",
"required": [
"InstanceId"
],
"members": {
"InstanceId": {
"location": "uri",
"locationName": "InstanceId"
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"HoursOfOperationSummaryList": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Id": {},
"Arn": {},
"Name": {}
}
}
},
"NextToken": {}
}
}
},
"ListPhoneNumbers": {
"http": {
"method": "GET",
"requestUri": "/phone-numbers-summary/{InstanceId}"
},
"input": {
"type": "structure",
"required": [
"InstanceId"
],
"members": {
"InstanceId": {
"location": "uri",
"locationName": "InstanceId"
},
"PhoneNumberTypes": {
"location": "querystring",
"locationName": "phoneNumberTypes",
"type": "list",
"member": {}
},
"PhoneNumberCountryCodes": {
"location": "querystring",
"locationName": "phoneNumberCountryCodes",
"type": "list",
"member": {}
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"PhoneNumberSummaryList": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Id": {},
"Arn": {},
"PhoneNumber": {},
"PhoneNumberType": {},
"PhoneNumberCountryCode": {}
}
}
},
"NextToken": {}
}
}
},
"ListQueues": {
"http": {
"method": "GET",
"requestUri": "/queues-summary/{InstanceId}"
},
"input": {
"type": "structure",
"required": [
"InstanceId"
],
"members": {
"InstanceId": {
"location": "uri",
"locationName": "InstanceId"
},
"QueueTypes": {
"location": "querystring",
"locationName": "queueTypes",
"type": "list",
"member": {}
},
"NextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"MaxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"QueueSummaryList": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Id": {},
"Arn": {},
"Name": {},
"QueueType": {}
}
}
},
"NextToken": {}
}
}
},
"ListRoutingProfiles": {
"http": {
"method": "GET",
Expand Down
Loading

0 comments on commit 5f9ae8a

Please sign in to comment.