List of waiters for AWS Transcribe

0

The documentation for the Boto3 TranscribeService getWaiter() says

See the waiters section of the service docs for a list of available waiters.

...but there are no waiters listed in the documentation. Are waiters available for AWS TranscribeService?

dltj
已提问 2 年前274 查看次数
1 回答
1

I found some reference related to waiters here: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/clients.html#waiters

Just tried to get available waiters for Amazon Transcribe service using below code:

import boto3

transcribe = boto3.client('transcribe')

print(transcribe.waiter_names)

This function returned empty string and according to above link if a client does not have any waiters then it will return an empty list when accessing its waiter_names attribute. It looks that this service does not have any waiters at this moment.

AWS
已回答 10 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则