pub trait Waiters {
// Required methods
fn wait_until_component_deployed(&self) -> ComponentDeployedFluentBuilder;
fn wait_until_component_deleted(&self) -> ComponentDeletedFluentBuilder;
fn wait_until_environment_deployed(
&self,
) -> EnvironmentDeployedFluentBuilder;
fn wait_until_environment_template_version_registered(
&self,
) -> EnvironmentTemplateVersionRegisteredFluentBuilder;
fn wait_until_service_created(&self) -> ServiceCreatedFluentBuilder;
fn wait_until_service_updated(&self) -> ServiceUpdatedFluentBuilder;
fn wait_until_service_deleted(&self) -> ServiceDeletedFluentBuilder;
fn wait_until_service_pipeline_deployed(
&self,
) -> ServicePipelineDeployedFluentBuilder;
fn wait_until_service_instance_deployed(
&self,
) -> ServiceInstanceDeployedFluentBuilder;
fn wait_until_service_template_version_registered(
&self,
) -> ServiceTemplateVersionRegisteredFluentBuilder;
}
Expand description
Waiter functions for the client.
Import this trait to get wait_until
methods on the client.
Required Methods§
Sourcefn wait_until_component_deployed(&self) -> ComponentDeployedFluentBuilder
fn wait_until_component_deployed(&self) -> ComponentDeployedFluentBuilder
Wait until a Component is deployed. Use this after invoking CreateComponent or UpdateComponent
Sourcefn wait_until_component_deleted(&self) -> ComponentDeletedFluentBuilder
fn wait_until_component_deleted(&self) -> ComponentDeletedFluentBuilder
Wait until a Component is deleted. Use this after invoking DeleteComponent
Sourcefn wait_until_environment_deployed(&self) -> EnvironmentDeployedFluentBuilder
fn wait_until_environment_deployed(&self) -> EnvironmentDeployedFluentBuilder
Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment
Sourcefn wait_until_environment_template_version_registered(
&self,
) -> EnvironmentTemplateVersionRegisteredFluentBuilder
fn wait_until_environment_template_version_registered( &self, ) -> EnvironmentTemplateVersionRegisteredFluentBuilder
Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion
Sourcefn wait_until_service_created(&self) -> ServiceCreatedFluentBuilder
fn wait_until_service_created(&self) -> ServiceCreatedFluentBuilder
Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService
Sourcefn wait_until_service_updated(&self) -> ServiceUpdatedFluentBuilder
fn wait_until_service_updated(&self) -> ServiceUpdatedFluentBuilder
Wait until a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked
Sourcefn wait_until_service_deleted(&self) -> ServiceDeletedFluentBuilder
fn wait_until_service_deleted(&self) -> ServiceDeletedFluentBuilder
Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked
Sourcefn wait_until_service_pipeline_deployed(
&self,
) -> ServicePipelineDeployedFluentBuilder
fn wait_until_service_pipeline_deployed( &self, ) -> ServicePipelineDeployedFluentBuilder
Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline
Sourcefn wait_until_service_instance_deployed(
&self,
) -> ServiceInstanceDeployedFluentBuilder
fn wait_until_service_instance_deployed( &self, ) -> ServiceInstanceDeployedFluentBuilder
Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance
Sourcefn wait_until_service_template_version_registered(
&self,
) -> ServiceTemplateVersionRegisteredFluentBuilder
fn wait_until_service_template_version_registered( &self, ) -> ServiceTemplateVersionRegisteredFluentBuilder
Wait until a ServiceTemplateVersion is registered. Use this after invoking CreateServiceTemplateVersion