Skip to content

Waiters#

Index > Omics > Waiters

Auto-generated documentation for Omics type annotations stubs module mypy-boto3-omics.

AnnotationImportJobCreatedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("annotation_import_job_created"). boto3 documentation

# AnnotationImportJobCreatedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import AnnotationImportJobCreatedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: AnnotationImportJobCreatedWaiter = client.get_waiter("annotation_import_job_created")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: AnnotationImportJobCreatedWaiter

wait#

Type annotations and code completion for AnnotationImportJobCreatedWaiter.wait method.

# wait method definition

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

kwargs: GetAnnotationImportRequestAnnotationImportJobCreatedWaitTypeDef = {  # (1)
    "jobId": ...,
}

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

AnnotationStoreCreatedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("annotation_store_created"). boto3 documentation

# AnnotationStoreCreatedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import AnnotationStoreCreatedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: AnnotationStoreCreatedWaiter = client.get_waiter("annotation_store_created")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: AnnotationStoreCreatedWaiter

wait#

Type annotations and code completion for AnnotationStoreCreatedWaiter.wait method.

# wait method definition

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

kwargs: GetAnnotationStoreRequestAnnotationStoreCreatedWaitTypeDef = {  # (1)
    "name": ...,
}

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

AnnotationStoreDeletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("annotation_store_deleted"). boto3 documentation

# AnnotationStoreDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import AnnotationStoreDeletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: AnnotationStoreDeletedWaiter = client.get_waiter("annotation_store_deleted")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: AnnotationStoreDeletedWaiter

wait#

Type annotations and code completion for AnnotationStoreDeletedWaiter.wait method.

# wait method definition

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

kwargs: GetAnnotationStoreRequestAnnotationStoreDeletedWaitTypeDef = {  # (1)
    "name": ...,
}

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

AnnotationStoreVersionCreatedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("annotation_store_version_created"). boto3 documentation

# AnnotationStoreVersionCreatedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import AnnotationStoreVersionCreatedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: AnnotationStoreVersionCreatedWaiter = client.get_waiter("annotation_store_version_created")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: AnnotationStoreVersionCreatedWaiter

wait#

Type annotations and code completion for AnnotationStoreVersionCreatedWaiter.wait method.

# wait method definition

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

kwargs: GetAnnotationStoreVersionRequestAnnotationStoreVersionCreatedWaitTypeDef = {  # (1)
    "name": ...,
    "versionName": ...,
}

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

AnnotationStoreVersionDeletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("annotation_store_version_deleted"). boto3 documentation

# AnnotationStoreVersionDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import AnnotationStoreVersionDeletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: AnnotationStoreVersionDeletedWaiter = client.get_waiter("annotation_store_version_deleted")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: AnnotationStoreVersionDeletedWaiter

wait#

Type annotations and code completion for AnnotationStoreVersionDeletedWaiter.wait method.

# wait method definition

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

kwargs: GetAnnotationStoreVersionRequestAnnotationStoreVersionDeletedWaitTypeDef = {  # (1)
    "name": ...,
    "versionName": ...,
}

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

ReadSetActivationJobCompletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("read_set_activation_job_completed"). boto3 documentation

# ReadSetActivationJobCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import ReadSetActivationJobCompletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: ReadSetActivationJobCompletedWaiter = client.get_waiter("read_set_activation_job_completed")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: ReadSetActivationJobCompletedWaiter

wait#

Type annotations and code completion for ReadSetActivationJobCompletedWaiter.wait method.

# wait method definition

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

kwargs: GetReadSetActivationJobRequestReadSetActivationJobCompletedWaitTypeDef = {  # (1)
    "id": ...,
    "sequenceStoreId": ...,
}

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

ReadSetExportJobCompletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("read_set_export_job_completed"). boto3 documentation

# ReadSetExportJobCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import ReadSetExportJobCompletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: ReadSetExportJobCompletedWaiter = client.get_waiter("read_set_export_job_completed")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: ReadSetExportJobCompletedWaiter

wait#

Type annotations and code completion for ReadSetExportJobCompletedWaiter.wait method.

# wait method definition

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

kwargs: GetReadSetExportJobRequestReadSetExportJobCompletedWaitTypeDef = {  # (1)
    "sequenceStoreId": ...,
    "id": ...,
}

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

ReadSetImportJobCompletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("read_set_import_job_completed"). boto3 documentation

# ReadSetImportJobCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import ReadSetImportJobCompletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: ReadSetImportJobCompletedWaiter = client.get_waiter("read_set_import_job_completed")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: ReadSetImportJobCompletedWaiter

wait#

Type annotations and code completion for ReadSetImportJobCompletedWaiter.wait method.

# wait method definition

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

kwargs: GetReadSetImportJobRequestReadSetImportJobCompletedWaitTypeDef = {  # (1)
    "id": ...,
    "sequenceStoreId": ...,
}

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

ReferenceImportJobCompletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("reference_import_job_completed"). boto3 documentation

# ReferenceImportJobCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import ReferenceImportJobCompletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: ReferenceImportJobCompletedWaiter = client.get_waiter("reference_import_job_completed")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: ReferenceImportJobCompletedWaiter

wait#

Type annotations and code completion for ReferenceImportJobCompletedWaiter.wait method.

# wait method definition

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

kwargs: GetReferenceImportJobRequestReferenceImportJobCompletedWaitTypeDef = {  # (1)
    "id": ...,
    "referenceStoreId": ...,
}

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

RunCompletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("run_completed"). boto3 documentation

# RunCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import RunCompletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: RunCompletedWaiter = client.get_waiter("run_completed")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: RunCompletedWaiter

wait#

Type annotations and code completion for RunCompletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    id: str,
    export: Sequence[RunExportType] = ...,  # (1)
    WaiterConfig: WaiterConfigTypeDef = ...,  # (2)
) -> None:
    ...
  1. See RunExportType
  2. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetRunRequestRunCompletedWaitTypeDef = {  # (1)
    "id": ...,
}

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

RunRunningWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("run_running"). boto3 documentation

# RunRunningWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import RunRunningWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: RunRunningWaiter = client.get_waiter("run_running")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: RunRunningWaiter

wait#

Type annotations and code completion for RunRunningWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    id: str,
    export: Sequence[RunExportType] = ...,  # (1)
    WaiterConfig: WaiterConfigTypeDef = ...,  # (2)
) -> None:
    ...
  1. See RunExportType
  2. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetRunRequestRunRunningWaitTypeDef = {  # (1)
    "id": ...,
}

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

TaskCompletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("task_completed"). boto3 documentation

# TaskCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import TaskCompletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: TaskCompletedWaiter = client.get_waiter("task_completed")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: TaskCompletedWaiter

wait#

Type annotations and code completion for TaskCompletedWaiter.wait method.

# wait method definition

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

kwargs: GetRunTaskRequestTaskCompletedWaitTypeDef = {  # (1)
    "id": ...,
    "taskId": ...,
}

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

TaskRunningWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("task_running"). boto3 documentation

# TaskRunningWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import TaskRunningWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: TaskRunningWaiter = client.get_waiter("task_running")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: TaskRunningWaiter

wait#

Type annotations and code completion for TaskRunningWaiter.wait method.

# wait method definition

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

kwargs: GetRunTaskRequestTaskRunningWaitTypeDef = {  # (1)
    "id": ...,
    "taskId": ...,
}

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

VariantImportJobCreatedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("variant_import_job_created"). boto3 documentation

# VariantImportJobCreatedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import VariantImportJobCreatedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: VariantImportJobCreatedWaiter = client.get_waiter("variant_import_job_created")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: VariantImportJobCreatedWaiter

wait#

Type annotations and code completion for VariantImportJobCreatedWaiter.wait method.

# wait method definition

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

kwargs: GetVariantImportRequestVariantImportJobCreatedWaitTypeDef = {  # (1)
    "jobId": ...,
}

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

VariantStoreCreatedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("variant_store_created"). boto3 documentation

# VariantStoreCreatedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import VariantStoreCreatedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: VariantStoreCreatedWaiter = client.get_waiter("variant_store_created")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: VariantStoreCreatedWaiter

wait#

Type annotations and code completion for VariantStoreCreatedWaiter.wait method.

# wait method definition

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

kwargs: GetVariantStoreRequestVariantStoreCreatedWaitTypeDef = {  # (1)
    "name": ...,
}

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

VariantStoreDeletedWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("variant_store_deleted"). boto3 documentation

# VariantStoreDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import VariantStoreDeletedWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: VariantStoreDeletedWaiter = client.get_waiter("variant_store_deleted")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: VariantStoreDeletedWaiter

wait#

Type annotations and code completion for VariantStoreDeletedWaiter.wait method.

# wait method definition

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

kwargs: GetVariantStoreRequestVariantStoreDeletedWaitTypeDef = {  # (1)
    "name": ...,
}

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

WorkflowActiveWaiter#

Type annotations and code completion for boto3.client("omics").get_waiter("workflow_active"). boto3 documentation

# WorkflowActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_omics.waiter import WorkflowActiveWaiter


session = Session()

client = session.client("omics")  # (1)
waiter: WorkflowActiveWaiter = client.get_waiter("workflow_active")  # (2)
await waiter.wait()
  1. client: OmicsClient
  2. waiter: WorkflowActiveWaiter

wait#

Type annotations and code completion for WorkflowActiveWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    id: str,
    type: WorkflowTypeType = ...,  # (1)
    export: Sequence[WorkflowExportType] = ...,  # (2)
    WaiterConfig: WaiterConfigTypeDef = ...,  # (3)
) -> None:
    ...
  1. See WorkflowTypeType
  2. See WorkflowExportType
  3. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetWorkflowRequestWorkflowActiveWaitTypeDef = {  # (1)
    "id": ...,
}

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