Trait Waiters

Source
pub trait Waiters {
    // Required methods
    fn wait_until_load_balancer_available(
        &self,
    ) -> LoadBalancerAvailableFluentBuilder;
    fn wait_until_load_balancer_exists(&self) -> LoadBalancerExistsFluentBuilder;
    fn wait_until_load_balancers_deleted(
        &self,
    ) -> LoadBalancersDeletedFluentBuilder;
    fn wait_until_target_deregistered(&self) -> TargetDeregisteredFluentBuilder;
    fn wait_until_target_in_service(&self) -> TargetInServiceFluentBuilder;
}
Expand description

Waiter functions for the client.

Import this trait to get wait_until methods on the client.

Required Methods§

Implementors§