Skip to content

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(...)
  1. client: TranscribeServiceClient
  2. waiter: CallAnalyticsJobCompletedWaiter

wait#

Type annotations and code completion for CallAnalyticsJobCompletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    CallAnalyticsJobName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetCallAnalyticsJobRequestWaitTypeDef = {  # (1)
    "CallAnalyticsJobName": ...,
}

parent.wait(**kwargs)
  1. See GetCallAnalyticsJobRequestWaitTypeDef

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(...)
  1. client: TranscribeServiceClient
  2. waiter: LanguageModelCompletedWaiter

wait#

Type annotations and code completion for LanguageModelCompletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    ModelName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: DescribeLanguageModelRequestWaitTypeDef = {  # (1)
    "ModelName": ...,
}

parent.wait(**kwargs)
  1. See DescribeLanguageModelRequestWaitTypeDef

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(...)
  1. client: TranscribeServiceClient
  2. waiter: MedicalScribeJobCompletedWaiter

wait#

Type annotations and code completion for MedicalScribeJobCompletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    MedicalScribeJobName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetMedicalScribeJobRequestWaitTypeDef = {  # (1)
    "MedicalScribeJobName": ...,
}

parent.wait(**kwargs)
  1. See GetMedicalScribeJobRequestWaitTypeDef

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(...)
  1. client: TranscribeServiceClient
  2. waiter: MedicalTranscriptionJobCompletedWaiter

wait#

Type annotations and code completion for MedicalTranscriptionJobCompletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    MedicalTranscriptionJobName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetMedicalTranscriptionJobRequestWaitTypeDef = {  # (1)
    "MedicalTranscriptionJobName": ...,
}

parent.wait(**kwargs)
  1. See GetMedicalTranscriptionJobRequestWaitTypeDef

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(...)
  1. client: TranscribeServiceClient
  2. waiter: MedicalVocabularyReadyWaiter

wait#

Type annotations and code completion for MedicalVocabularyReadyWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    VocabularyName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetMedicalVocabularyRequestWaitTypeDef = {  # (1)
    "VocabularyName": ...,
}

parent.wait(**kwargs)
  1. See GetMedicalVocabularyRequestWaitTypeDef

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(...)
  1. client: TranscribeServiceClient
  2. waiter: TranscriptionJobCompletedWaiter

wait#

Type annotations and code completion for TranscriptionJobCompletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    TranscriptionJobName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetTranscriptionJobRequestWaitTypeDef = {  # (1)
    "TranscriptionJobName": ...,
}

parent.wait(**kwargs)
  1. See GetTranscriptionJobRequestWaitTypeDef

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(...)
  1. client: TranscribeServiceClient
  2. waiter: VocabularyReadyWaiter

wait#

Type annotations and code completion for VocabularyReadyWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    VocabularyName: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetVocabularyRequestWaitTypeDef = {  # (1)
    "VocabularyName": ...,
}

parent.wait(**kwargs)
  1. See GetVocabularyRequestWaitTypeDef