Waiters#
Index > TranscribeService > Waiters
Auto-generated documentation for TranscribeService type annotations stubs module types-boto3-transcribe.
CallAnalyticsJobCompletedWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("call_analytics_job_completed").
boto3 documentation
# CallAnalyticsJobCompletedWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import CallAnalyticsJobCompletedWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: CallAnalyticsJobCompletedWaiter = client.get_waiter("call_analytics_job_completed") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: CallAnalyticsJobCompletedWaiter
wait#
Type annotations and code completion for CallAnalyticsJobCompletedWaiter.wait method.
# wait method definition
def wait(
self,
*,
CallAnalyticsJobName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetCallAnalyticsJobRequestWaitTypeDef = { # (1)
"CallAnalyticsJobName": ...,
}
parent.wait(**kwargs)
LanguageModelCompletedWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("language_model_completed").
boto3 documentation
# LanguageModelCompletedWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import LanguageModelCompletedWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: LanguageModelCompletedWaiter = client.get_waiter("language_model_completed") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: LanguageModelCompletedWaiter
wait#
Type annotations and code completion for LanguageModelCompletedWaiter.wait method.
# wait method definition
def wait(
self,
*,
ModelName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: DescribeLanguageModelRequestWaitTypeDef = { # (1)
"ModelName": ...,
}
parent.wait(**kwargs)
MedicalScribeJobCompletedWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("medical_scribe_job_completed").
boto3 documentation
# MedicalScribeJobCompletedWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import MedicalScribeJobCompletedWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: MedicalScribeJobCompletedWaiter = client.get_waiter("medical_scribe_job_completed") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: MedicalScribeJobCompletedWaiter
wait#
Type annotations and code completion for MedicalScribeJobCompletedWaiter.wait method.
# wait method definition
def wait(
self,
*,
MedicalScribeJobName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetMedicalScribeJobRequestWaitTypeDef = { # (1)
"MedicalScribeJobName": ...,
}
parent.wait(**kwargs)
MedicalTranscriptionJobCompletedWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("medical_transcription_job_completed").
boto3 documentation
# MedicalTranscriptionJobCompletedWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import MedicalTranscriptionJobCompletedWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: MedicalTranscriptionJobCompletedWaiter = client.get_waiter("medical_transcription_job_completed") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: MedicalTranscriptionJobCompletedWaiter
wait#
Type annotations and code completion for MedicalTranscriptionJobCompletedWaiter.wait method.
# wait method definition
def wait(
self,
*,
MedicalTranscriptionJobName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetMedicalTranscriptionJobRequestWaitTypeDef = { # (1)
"MedicalTranscriptionJobName": ...,
}
parent.wait(**kwargs)
MedicalVocabularyReadyWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("medical_vocabulary_ready").
boto3 documentation
# MedicalVocabularyReadyWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import MedicalVocabularyReadyWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: MedicalVocabularyReadyWaiter = client.get_waiter("medical_vocabulary_ready") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: MedicalVocabularyReadyWaiter
wait#
Type annotations and code completion for MedicalVocabularyReadyWaiter.wait method.
# wait method definition
def wait(
self,
*,
VocabularyName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetMedicalVocabularyRequestWaitTypeDef = { # (1)
"VocabularyName": ...,
}
parent.wait(**kwargs)
TranscriptionJobCompletedWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("transcription_job_completed").
boto3 documentation
# TranscriptionJobCompletedWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import TranscriptionJobCompletedWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: TranscriptionJobCompletedWaiter = client.get_waiter("transcription_job_completed") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: TranscriptionJobCompletedWaiter
wait#
Type annotations and code completion for TranscriptionJobCompletedWaiter.wait method.
# wait method definition
def wait(
self,
*,
TranscriptionJobName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetTranscriptionJobRequestWaitTypeDef = { # (1)
"TranscriptionJobName": ...,
}
parent.wait(**kwargs)
VocabularyReadyWaiter#
Type annotations and code completion for boto3.client("transcribe").get_waiter("vocabulary_ready").
boto3 documentation
# VocabularyReadyWaiter usage example
from boto3.session import Session
from types_boto3_transcribe.waiter import VocabularyReadyWaiter
session = Session()
client = session.client("transcribe") # (1)
waiter: VocabularyReadyWaiter = client.get_waiter("vocabulary_ready") # (2)
await waiter.wait(...)
- client: TranscribeServiceClient
- waiter: VocabularyReadyWaiter
wait#
Type annotations and code completion for VocabularyReadyWaiter.wait method.
# wait method definition
def wait(
self,
*,
VocabularyName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetVocabularyRequestWaitTypeDef = { # (1)
"VocabularyName": ...,
}
parent.wait(**kwargs)