Trait Waiters

Source
pub trait Waiters {
    // Required methods
    fn wait_until_table_exists(&self) -> TableExistsFluentBuilder;
    fn wait_until_table_not_exists(&self) -> TableNotExistsFluentBuilder;
}
Expand description

Waiter functions for the client.

Import this trait to get wait_until methods on the client.

Required Methods§

Source

fn wait_until_table_exists(&self) -> TableExistsFluentBuilder

Wait for table_exists

Source

fn wait_until_table_not_exists(&self) -> TableNotExistsFluentBuilder

Wait for table_not_exists

Implementors§