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 年前檢視次數 273 次
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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南