-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Mar 30, 2018
1 parent
915501f
commit d32e926
Showing
22 changed files
with
568 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "Connect", | ||
"description": "Amazon Connect is a contact center as a service (CCaS) solution that offers easy, self-service configuration and enables dynamic, personal, and natural customer engagement at any scale. With this release of the Amazon Connect SDK, Outbound APIs (StartOutboundVoiceContact, StopContact) are now generally available. This release supports CTR generation for calls generated through the new APIs. Additionally IAM permissions are supported for the new APIs. " | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"version": "1.0", | ||
"examples": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"version": "2.0", | ||
"metadata": { | ||
"apiVersion": "2017-08-08", | ||
"endpointPrefix": "connect", | ||
"jsonVersion": "1.1", | ||
"protocol": "rest-json", | ||
"serviceAbbreviation": "Amazon Connect", | ||
"serviceFullName": "Amazon Connect Service", | ||
"serviceId": "Connect", | ||
"signatureVersion": "v4", | ||
"signingName": "connect", | ||
"uid": "connect-2017-08-08" | ||
}, | ||
"operations": { | ||
"StartOutboundVoiceContact": { | ||
"http": { | ||
"method": "PUT", | ||
"requestUri": "/contact/outbound-voice" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"DestinationPhoneNumber", | ||
"ContactFlowId", | ||
"InstanceId" | ||
], | ||
"members": { | ||
"DestinationPhoneNumber": {}, | ||
"ContactFlowId": {}, | ||
"InstanceId": {}, | ||
"ClientToken": { | ||
"idempotencyToken": true | ||
}, | ||
"SourcePhoneNumber": {}, | ||
"QueueId": {}, | ||
"Attributes": { | ||
"type": "map", | ||
"key": {}, | ||
"value": {} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": { | ||
"ContactId": {} | ||
} | ||
} | ||
}, | ||
"StopContact": { | ||
"http": { | ||
"requestUri": "/contact/stop" | ||
}, | ||
"input": { | ||
"type": "structure", | ||
"required": [ | ||
"ContactId", | ||
"InstanceId" | ||
], | ||
"members": { | ||
"ContactId": {}, | ||
"InstanceId": {} | ||
} | ||
}, | ||
"output": { | ||
"type": "structure", | ||
"members": {} | ||
} | ||
} | ||
}, | ||
"shapes": {} | ||
} |
Oops, something went wrong.