Waiters#
Index > DeadlineCloud > Waiters
Auto-generated documentation for DeadlineCloud type annotations stubs module mypy-boto3-deadline.
FleetActiveWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("fleet_active")
.
boto3 documentation
# FleetActiveWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import FleetActiveWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: FleetActiveWaiter = client.get_waiter("fleet_active") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: FleetActiveWaiter
wait#
Type annotations and code completion for FleetActiveWaiter.wait
method.
# wait method definition
def wait(
self,
*,
farmId: str,
fleetId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetFleetRequestFleetActiveWaitTypeDef = { # (1)
"farmId": ...,
"fleetId": ...,
}
parent.wait(**kwargs)
JobCreateCompleteWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("job_create_complete")
.
boto3 documentation
# JobCreateCompleteWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import JobCreateCompleteWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: JobCreateCompleteWaiter = client.get_waiter("job_create_complete") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: JobCreateCompleteWaiter
wait#
Type annotations and code completion for JobCreateCompleteWaiter.wait
method.
# wait method definition
def wait(
self,
*,
farmId: str,
jobId: str,
queueId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetJobRequestJobCreateCompleteWaitTypeDef = { # (1)
"farmId": ...,
"jobId": ...,
"queueId": ...,
}
parent.wait(**kwargs)
LicenseEndpointDeletedWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("license_endpoint_deleted")
.
boto3 documentation
# LicenseEndpointDeletedWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import LicenseEndpointDeletedWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: LicenseEndpointDeletedWaiter = client.get_waiter("license_endpoint_deleted") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: LicenseEndpointDeletedWaiter
wait#
Type annotations and code completion for LicenseEndpointDeletedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
licenseEndpointId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetLicenseEndpointRequestLicenseEndpointDeletedWaitTypeDef = { # (1)
"licenseEndpointId": ...,
}
parent.wait(**kwargs)
LicenseEndpointValidWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("license_endpoint_valid")
.
boto3 documentation
# LicenseEndpointValidWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import LicenseEndpointValidWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: LicenseEndpointValidWaiter = client.get_waiter("license_endpoint_valid") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: LicenseEndpointValidWaiter
wait#
Type annotations and code completion for LicenseEndpointValidWaiter.wait
method.
# wait method definition
def wait(
self,
*,
licenseEndpointId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetLicenseEndpointRequestLicenseEndpointValidWaitTypeDef = { # (1)
"licenseEndpointId": ...,
}
parent.wait(**kwargs)
QueueFleetAssociationStoppedWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("queue_fleet_association_stopped")
.
boto3 documentation
# QueueFleetAssociationStoppedWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import QueueFleetAssociationStoppedWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: QueueFleetAssociationStoppedWaiter = client.get_waiter("queue_fleet_association_stopped") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: QueueFleetAssociationStoppedWaiter
wait#
Type annotations and code completion for QueueFleetAssociationStoppedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
farmId: str,
queueId: str,
fleetId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetQueueFleetAssociationRequestQueueFleetAssociationStoppedWaitTypeDef = { # (1)
"farmId": ...,
"queueId": ...,
"fleetId": ...,
}
parent.wait(**kwargs)
QueueSchedulingBlockedWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("queue_scheduling_blocked")
.
boto3 documentation
# QueueSchedulingBlockedWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import QueueSchedulingBlockedWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: QueueSchedulingBlockedWaiter = client.get_waiter("queue_scheduling_blocked") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: QueueSchedulingBlockedWaiter
wait#
Type annotations and code completion for QueueSchedulingBlockedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
farmId: str,
queueId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetQueueRequestQueueSchedulingBlockedWaitTypeDef = { # (1)
"farmId": ...,
"queueId": ...,
}
parent.wait(**kwargs)
QueueSchedulingWaiter#
Type annotations and code completion for boto3.client("deadline").get_waiter("queue_scheduling")
.
boto3 documentation
# QueueSchedulingWaiter usage example
from boto3.session import Session
from mypy_boto3_deadline.waiter import QueueSchedulingWaiter
session = Session()
client = session.client("deadline") # (1)
waiter: QueueSchedulingWaiter = client.get_waiter("queue_scheduling") # (2)
await waiter.wait()
- client: DeadlineCloudClient
- waiter: QueueSchedulingWaiter
wait#
Type annotations and code completion for QueueSchedulingWaiter.wait
method.
# wait method definition
def wait(
self,
*,
farmId: str,
queueId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetQueueRequestQueueSchedulingWaitTypeDef = { # (1)
"farmId": ...,
"queueId": ...,
}
parent.wait(**kwargs)