Skip to content

Waiters

Index > AppStream > Waiters

Auto-generated documentation for AppStream type annotations stubs module mypy-boto3-appstream.

FleetStartedWaiter

Type annotations and code completion for boto3.client("appstream").get_waiter("fleet_started"). boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_appstream.waiter import FleetStartedWaiter


session = Session()

client = session.client("appstream")  # (1)
waiter: FleetStartedWaiter = client.get_waiter("fleet_started")  # (2)
await waiter.wait()
  1. client: AppStreamClient
  2. waiter: FleetStartedWaiter

wait

Type annotations and code completion for FleetStartedWaiter.wait method.

Method definition
def wait(
    self,
    *,
    Names: Sequence[str] = ...,
    NextToken: str = ...,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
kwargs: DescribeFleetsRequestFleetStartedWaitTypeDef = {  # (1)
    "Names": ...,
}

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

FleetStoppedWaiter

Type annotations and code completion for boto3.client("appstream").get_waiter("fleet_stopped"). boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_appstream.waiter import FleetStoppedWaiter


session = Session()

client = session.client("appstream")  # (1)
waiter: FleetStoppedWaiter = client.get_waiter("fleet_stopped")  # (2)
await waiter.wait()
  1. client: AppStreamClient
  2. waiter: FleetStoppedWaiter

wait

Type annotations and code completion for FleetStoppedWaiter.wait method.

Method definition
def wait(
    self,
    *,
    Names: Sequence[str] = ...,
    NextToken: str = ...,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
Usage example with kwargs
kwargs: DescribeFleetsRequestFleetStoppedWaitTypeDef = {  # (1)
    "Names": ...,
}

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