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年前280ビュー
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ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ