Waiters

Trait Waiters 

Source
pub trait Waiters {
    // Required methods
    fn wait_until_cluster_active(&self) -> ClusterActiveFluentBuilder;
    fn wait_until_cluster_not_exists(&self) -> ClusterNotExistsFluentBuilder;
}
Expand description

Waiter functions for the client.

Import this trait to get wait_until methods on the client.

Required Methods§

Source

fn wait_until_cluster_active(&self) -> ClusterActiveFluentBuilder

Wait until a Cluster is ACTIVE

Source

fn wait_until_cluster_not_exists(&self) -> ClusterNotExistsFluentBuilder

Wait until a Cluster is gone

Implementors§