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

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.

Method definition
def wait(
    self,
    *,
    jobId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    name: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    name: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
kwargs: GetAnnotationStoreRequestAnnotationStoreDeletedWaitTypeDef = {  # (1)
    "name": ...,
}

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

ReadSetActivationJobCompletedWaiter

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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    sequenceStoreId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    sequenceStoreId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
kwargs: GetReadSetExportJobRequestReadSetExportJobCompletedWaitTypeDef = {  # (1)
    "id": ...,
    "sequenceStoreId": ...,
}

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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    sequenceStoreId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    referenceStoreId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    export: Sequence[RunExportType] = ...,  # (1)
    WaiterConfig: WaiterConfigTypeDef = ...,  # (2)
) -> None:
    ...
  1. See RunExportType
  2. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    export: Sequence[RunExportType] = ...,  # (1)
    WaiterConfig: WaiterConfigTypeDef = ...,  # (2)
) -> None:
    ...
  1. See RunExportType
  2. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    taskId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    taskId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    jobId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    name: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    name: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
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

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.

Method definition
def wait(
    self,
    *,
    id: str,
    export: Sequence[WorkflowExportType] = ...,  # (1)
    type: WorkflowTypeType = ...,  # (2)
    WaiterConfig: WaiterConfigTypeDef = ...,  # (3)
) -> None:
    ...
  1. See WorkflowExportType
  2. See WorkflowTypeType
  3. See WaiterConfigTypeDef
Usage example with kwargs
kwargs: GetWorkflowRequestWorkflowActiveWaitTypeDef = {  # (1)
    "id": ...,
}

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