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
demandé il y a 2 ans285 vues
1 réponse
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
répondu il y a 10 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions