Skip to content

Waiters#

Index > HealthLake > Waiters

Auto-generated documentation for HealthLake type annotations stubs module mypy-boto3-healthlake.

FHIRDatastoreActiveWaiter#

Type annotations and code completion for boto3.client("healthlake").get_waiter("fhir_datastore_active"). boto3 documentation

# FHIRDatastoreActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_healthlake.waiter import FHIRDatastoreActiveWaiter


session = Session()

client = session.client("healthlake")  # (1)
waiter: FHIRDatastoreActiveWaiter = client.get_waiter("fhir_datastore_active")  # (2)
await waiter.wait(...)
  1. client: HealthLakeClient
  2. waiter: FHIRDatastoreActiveWaiter

wait#

Type annotations and code completion for FHIRDatastoreActiveWaiter.wait method.

# wait method definition

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

kwargs: DescribeFHIRDatastoreRequestWaitTypeDef = {  # (1)
    "DatastoreId": ...,
}

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

FHIRDatastoreDeletedWaiter#

Type annotations and code completion for boto3.client("healthlake").get_waiter("fhir_datastore_deleted"). boto3 documentation

# FHIRDatastoreDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_healthlake.waiter import FHIRDatastoreDeletedWaiter


session = Session()

client = session.client("healthlake")  # (1)
waiter: FHIRDatastoreDeletedWaiter = client.get_waiter("fhir_datastore_deleted")  # (2)
await waiter.wait(...)
  1. client: HealthLakeClient
  2. waiter: FHIRDatastoreDeletedWaiter

wait#

Type annotations and code completion for FHIRDatastoreDeletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeFHIRDatastoreRequestWaitExtraTypeDef = {  # (1)
    "DatastoreId": ...,
}

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

FHIRExportJobCompletedWaiter#

Type annotations and code completion for boto3.client("healthlake").get_waiter("fhir_export_job_completed"). boto3 documentation

# FHIRExportJobCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_healthlake.waiter import FHIRExportJobCompletedWaiter


session = Session()

client = session.client("healthlake")  # (1)
waiter: FHIRExportJobCompletedWaiter = client.get_waiter("fhir_export_job_completed")  # (2)
await waiter.wait(...)
  1. client: HealthLakeClient
  2. waiter: FHIRExportJobCompletedWaiter

wait#

Type annotations and code completion for FHIRExportJobCompletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeFHIRExportJobRequestWaitTypeDef = {  # (1)
    "DatastoreId": ...,
    "JobId": ...,
}

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

FHIRImportJobCompletedWaiter#

Type annotations and code completion for boto3.client("healthlake").get_waiter("fhir_import_job_completed"). boto3 documentation

# FHIRImportJobCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_healthlake.waiter import FHIRImportJobCompletedWaiter


session = Session()

client = session.client("healthlake")  # (1)
waiter: FHIRImportJobCompletedWaiter = client.get_waiter("fhir_import_job_completed")  # (2)
await waiter.wait(...)
  1. client: HealthLakeClient
  2. waiter: FHIRImportJobCompletedWaiter

wait#

Type annotations and code completion for FHIRImportJobCompletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeFHIRImportJobRequestWaitTypeDef = {  # (1)
    "DatastoreId": ...,
    "JobId": ...,
}

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