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년 전285회 조회
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달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠