VoiceIDClient.php
68 lines
| 1 | <?php |
| 2 | namespace Aws\VoiceID; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **Amazon Voice ID** service. |
| 8 | * @method \Aws\Result associateFraudster(array $args = []) |
| 9 | * @method \GuzzleHttp\Promise\Promise associateFraudsterAsync(array $args = []) |
| 10 | * @method \Aws\Result createDomain(array $args = []) |
| 11 | * @method \GuzzleHttp\Promise\Promise createDomainAsync(array $args = []) |
| 12 | * @method \Aws\Result createWatchlist(array $args = []) |
| 13 | * @method \GuzzleHttp\Promise\Promise createWatchlistAsync(array $args = []) |
| 14 | * @method \Aws\Result deleteDomain(array $args = []) |
| 15 | * @method \GuzzleHttp\Promise\Promise deleteDomainAsync(array $args = []) |
| 16 | * @method \Aws\Result deleteFraudster(array $args = []) |
| 17 | * @method \GuzzleHttp\Promise\Promise deleteFraudsterAsync(array $args = []) |
| 18 | * @method \Aws\Result deleteSpeaker(array $args = []) |
| 19 | * @method \GuzzleHttp\Promise\Promise deleteSpeakerAsync(array $args = []) |
| 20 | * @method \Aws\Result deleteWatchlist(array $args = []) |
| 21 | * @method \GuzzleHttp\Promise\Promise deleteWatchlistAsync(array $args = []) |
| 22 | * @method \Aws\Result describeDomain(array $args = []) |
| 23 | * @method \GuzzleHttp\Promise\Promise describeDomainAsync(array $args = []) |
| 24 | * @method \Aws\Result describeFraudster(array $args = []) |
| 25 | * @method \GuzzleHttp\Promise\Promise describeFraudsterAsync(array $args = []) |
| 26 | * @method \Aws\Result describeFraudsterRegistrationJob(array $args = []) |
| 27 | * @method \GuzzleHttp\Promise\Promise describeFraudsterRegistrationJobAsync(array $args = []) |
| 28 | * @method \Aws\Result describeSpeaker(array $args = []) |
| 29 | * @method \GuzzleHttp\Promise\Promise describeSpeakerAsync(array $args = []) |
| 30 | * @method \Aws\Result describeSpeakerEnrollmentJob(array $args = []) |
| 31 | * @method \GuzzleHttp\Promise\Promise describeSpeakerEnrollmentJobAsync(array $args = []) |
| 32 | * @method \Aws\Result describeWatchlist(array $args = []) |
| 33 | * @method \GuzzleHttp\Promise\Promise describeWatchlistAsync(array $args = []) |
| 34 | * @method \Aws\Result disassociateFraudster(array $args = []) |
| 35 | * @method \GuzzleHttp\Promise\Promise disassociateFraudsterAsync(array $args = []) |
| 36 | * @method \Aws\Result evaluateSession(array $args = []) |
| 37 | * @method \GuzzleHttp\Promise\Promise evaluateSessionAsync(array $args = []) |
| 38 | * @method \Aws\Result listDomains(array $args = []) |
| 39 | * @method \GuzzleHttp\Promise\Promise listDomainsAsync(array $args = []) |
| 40 | * @method \Aws\Result listFraudsterRegistrationJobs(array $args = []) |
| 41 | * @method \GuzzleHttp\Promise\Promise listFraudsterRegistrationJobsAsync(array $args = []) |
| 42 | * @method \Aws\Result listFraudsters(array $args = []) |
| 43 | * @method \GuzzleHttp\Promise\Promise listFraudstersAsync(array $args = []) |
| 44 | * @method \Aws\Result listSpeakerEnrollmentJobs(array $args = []) |
| 45 | * @method \GuzzleHttp\Promise\Promise listSpeakerEnrollmentJobsAsync(array $args = []) |
| 46 | * @method \Aws\Result listSpeakers(array $args = []) |
| 47 | * @method \GuzzleHttp\Promise\Promise listSpeakersAsync(array $args = []) |
| 48 | * @method \Aws\Result listTagsForResource(array $args = []) |
| 49 | * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) |
| 50 | * @method \Aws\Result listWatchlists(array $args = []) |
| 51 | * @method \GuzzleHttp\Promise\Promise listWatchlistsAsync(array $args = []) |
| 52 | * @method \Aws\Result optOutSpeaker(array $args = []) |
| 53 | * @method \GuzzleHttp\Promise\Promise optOutSpeakerAsync(array $args = []) |
| 54 | * @method \Aws\Result startFraudsterRegistrationJob(array $args = []) |
| 55 | * @method \GuzzleHttp\Promise\Promise startFraudsterRegistrationJobAsync(array $args = []) |
| 56 | * @method \Aws\Result startSpeakerEnrollmentJob(array $args = []) |
| 57 | * @method \GuzzleHttp\Promise\Promise startSpeakerEnrollmentJobAsync(array $args = []) |
| 58 | * @method \Aws\Result tagResource(array $args = []) |
| 59 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 60 | * @method \Aws\Result untagResource(array $args = []) |
| 61 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 62 | * @method \Aws\Result updateDomain(array $args = []) |
| 63 | * @method \GuzzleHttp\Promise\Promise updateDomainAsync(array $args = []) |
| 64 | * @method \Aws\Result updateWatchlist(array $args = []) |
| 65 | * @method \GuzzleHttp\Promise\Promise updateWatchlistAsync(array $args = []) |
| 66 | */ |
| 67 | class VoiceIDClient extends AwsClient {} |
| 68 |