Skip to content

Waiters#

Index > EKS > Waiters

Auto-generated documentation for EKS type annotations stubs module mypy-boto3-eks.

AddonActiveWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("addon_active"). boto3 documentation

# AddonActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import AddonActiveWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: AddonActiveWaiter = client.get_waiter("addon_active")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: AddonActiveWaiter

wait#

Type annotations and code completion for AddonActiveWaiter.wait method.

# wait method definition

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

kwargs: DescribeAddonRequestAddonActiveWaitTypeDef = {  # (1)
    "clusterName": ...,
    "addonName": ...,
}

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

AddonDeletedWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("addon_deleted"). boto3 documentation

# AddonDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import AddonDeletedWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: AddonDeletedWaiter = client.get_waiter("addon_deleted")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: AddonDeletedWaiter

wait#

Type annotations and code completion for AddonDeletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeAddonRequestAddonDeletedWaitTypeDef = {  # (1)
    "clusterName": ...,
    "addonName": ...,
}

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

ClusterActiveWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("cluster_active"). boto3 documentation

# ClusterActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import ClusterActiveWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: ClusterActiveWaiter = client.get_waiter("cluster_active")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: ClusterActiveWaiter

wait#

Type annotations and code completion for ClusterActiveWaiter.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: DescribeClusterRequestClusterActiveWaitTypeDef = {  # (1)
    "name": ...,
}

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

ClusterDeletedWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("cluster_deleted"). boto3 documentation

# ClusterDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import ClusterDeletedWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: ClusterDeletedWaiter = client.get_waiter("cluster_deleted")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: ClusterDeletedWaiter

wait#

Type annotations and code completion for ClusterDeletedWaiter.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: DescribeClusterRequestClusterDeletedWaitTypeDef = {  # (1)
    "name": ...,
}

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

FargateProfileActiveWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("fargate_profile_active"). boto3 documentation

# FargateProfileActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import FargateProfileActiveWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: FargateProfileActiveWaiter = client.get_waiter("fargate_profile_active")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: FargateProfileActiveWaiter

wait#

Type annotations and code completion for FargateProfileActiveWaiter.wait method.

# wait method definition

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

kwargs: DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef = {  # (1)
    "clusterName": ...,
    "fargateProfileName": ...,
}

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

FargateProfileDeletedWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("fargate_profile_deleted"). boto3 documentation

# FargateProfileDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import FargateProfileDeletedWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: FargateProfileDeletedWaiter = client.get_waiter("fargate_profile_deleted")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: FargateProfileDeletedWaiter

wait#

Type annotations and code completion for FargateProfileDeletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef = {  # (1)
    "clusterName": ...,
    "fargateProfileName": ...,
}

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

NodegroupActiveWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("nodegroup_active"). boto3 documentation

# NodegroupActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import NodegroupActiveWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: NodegroupActiveWaiter = client.get_waiter("nodegroup_active")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: NodegroupActiveWaiter

wait#

Type annotations and code completion for NodegroupActiveWaiter.wait method.

# wait method definition

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

kwargs: DescribeNodegroupRequestNodegroupActiveWaitTypeDef = {  # (1)
    "clusterName": ...,
    "nodegroupName": ...,
}

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

NodegroupDeletedWaiter#

Type annotations and code completion for boto3.client("eks").get_waiter("nodegroup_deleted"). boto3 documentation

# NodegroupDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_eks.waiter import NodegroupDeletedWaiter


session = Session()

client = session.client("eks")  # (1)
waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")  # (2)
await waiter.wait()
  1. client: EKSClient
  2. waiter: NodegroupDeletedWaiter

wait#

Type annotations and code completion for NodegroupDeletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeNodegroupRequestNodegroupDeletedWaitTypeDef = {  # (1)
    "clusterName": ...,
    "nodegroupName": ...,
}

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