Waiters#
Auto-generated documentation for Proton type annotations stubs module mypy-boto3-proton.
ComponentDeletedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("component_deleted")
.
boto3 documentation
# ComponentDeletedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ComponentDeletedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ComponentDeletedWaiter = client.get_waiter("component_deleted") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ComponentDeletedWaiter
wait#
Type annotations and code completion for ComponentDeletedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetComponentInputComponentDeletedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)
ComponentDeployedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("component_deployed")
.
boto3 documentation
# ComponentDeployedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ComponentDeployedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ComponentDeployedWaiter = client.get_waiter("component_deployed") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ComponentDeployedWaiter
wait#
Type annotations and code completion for ComponentDeployedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetComponentInputComponentDeployedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)
EnvironmentDeployedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("environment_deployed")
.
boto3 documentation
# EnvironmentDeployedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import EnvironmentDeployedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: EnvironmentDeployedWaiter = client.get_waiter("environment_deployed") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: EnvironmentDeployedWaiter
wait#
Type annotations and code completion for EnvironmentDeployedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetEnvironmentInputEnvironmentDeployedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)
EnvironmentTemplateVersionRegisteredWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("environment_template_version_registered")
.
boto3 documentation
# EnvironmentTemplateVersionRegisteredWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import EnvironmentTemplateVersionRegisteredWaiter
session = Session()
client = session.client("proton") # (1)
waiter: EnvironmentTemplateVersionRegisteredWaiter = client.get_waiter("environment_template_version_registered") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: EnvironmentTemplateVersionRegisteredWaiter
wait#
Type annotations and code completion for EnvironmentTemplateVersionRegisteredWaiter.wait
method.
# wait method definition
def wait(
self,
*,
majorVersion: str,
minorVersion: str,
templateName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetEnvironmentTemplateVersionInputEnvironmentTemplateVersionRegisteredWaitTypeDef = { # (1)
"majorVersion": ...,
"minorVersion": ...,
"templateName": ...,
}
parent.wait(**kwargs)
ServiceCreatedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("service_created")
.
boto3 documentation
# ServiceCreatedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ServiceCreatedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ServiceCreatedWaiter = client.get_waiter("service_created") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ServiceCreatedWaiter
wait#
Type annotations and code completion for ServiceCreatedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetServiceInputServiceCreatedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)
ServiceDeletedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("service_deleted")
.
boto3 documentation
# ServiceDeletedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ServiceDeletedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ServiceDeletedWaiter = client.get_waiter("service_deleted") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ServiceDeletedWaiter
wait#
Type annotations and code completion for ServiceDeletedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetServiceInputServiceDeletedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)
ServiceInstanceDeployedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("service_instance_deployed")
.
boto3 documentation
# ServiceInstanceDeployedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ServiceInstanceDeployedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ServiceInstanceDeployedWaiter = client.get_waiter("service_instance_deployed") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ServiceInstanceDeployedWaiter
wait#
Type annotations and code completion for ServiceInstanceDeployedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
serviceName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetServiceInstanceInputServiceInstanceDeployedWaitTypeDef = { # (1)
"name": ...,
"serviceName": ...,
}
parent.wait(**kwargs)
ServicePipelineDeployedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("service_pipeline_deployed")
.
boto3 documentation
# ServicePipelineDeployedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ServicePipelineDeployedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ServicePipelineDeployedWaiter = client.get_waiter("service_pipeline_deployed") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ServicePipelineDeployedWaiter
wait#
Type annotations and code completion for ServicePipelineDeployedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetServiceInputServicePipelineDeployedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)
ServiceTemplateVersionRegisteredWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("service_template_version_registered")
.
boto3 documentation
# ServiceTemplateVersionRegisteredWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ServiceTemplateVersionRegisteredWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ServiceTemplateVersionRegisteredWaiter = client.get_waiter("service_template_version_registered") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ServiceTemplateVersionRegisteredWaiter
wait#
Type annotations and code completion for ServiceTemplateVersionRegisteredWaiter.wait
method.
# wait method definition
def wait(
self,
*,
majorVersion: str,
minorVersion: str,
templateName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetServiceTemplateVersionInputServiceTemplateVersionRegisteredWaitTypeDef = { # (1)
"majorVersion": ...,
"minorVersion": ...,
"templateName": ...,
}
parent.wait(**kwargs)
ServiceUpdatedWaiter#
Type annotations and code completion for boto3.client("proton").get_waiter("service_updated")
.
boto3 documentation
# ServiceUpdatedWaiter usage example
from boto3.session import Session
from mypy_boto3_proton.waiter import ServiceUpdatedWaiter
session = Session()
client = session.client("proton") # (1)
waiter: ServiceUpdatedWaiter = client.get_waiter("service_updated") # (2)
await waiter.wait()
- client: ProtonClient
- waiter: ServiceUpdatedWaiter
wait#
Type annotations and code completion for ServiceUpdatedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
name: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetServiceInputServiceUpdatedWaitTypeDef = { # (1)
"name": ...,
}
parent.wait(**kwargs)