pub trait Waiters {
// Required methods
fn wait_until_application_ready(&self) -> ApplicationReadyFluentBuilder;
fn wait_until_application_deleted(&self) -> ApplicationDeletedFluentBuilder;
fn wait_until_stream_group_active(&self) -> StreamGroupActiveFluentBuilder;
fn wait_until_stream_group_deleted(&self) -> StreamGroupDeletedFluentBuilder;
fn wait_until_stream_session_active(
&self,
) -> StreamSessionActiveFluentBuilder;
}
Expand description
Waiter functions for the client.
Import this trait to get wait_until
methods on the client.
Required Methods§
Sourcefn wait_until_application_ready(&self) -> ApplicationReadyFluentBuilder
fn wait_until_application_ready(&self) -> ApplicationReadyFluentBuilder
Waits until an application is ready
Sourcefn wait_until_application_deleted(&self) -> ApplicationDeletedFluentBuilder
fn wait_until_application_deleted(&self) -> ApplicationDeletedFluentBuilder
Waits until an application is deleted
Sourcefn wait_until_stream_group_active(&self) -> StreamGroupActiveFluentBuilder
fn wait_until_stream_group_active(&self) -> StreamGroupActiveFluentBuilder
Waits until a stream group is active
Sourcefn wait_until_stream_group_deleted(&self) -> StreamGroupDeletedFluentBuilder
fn wait_until_stream_group_deleted(&self) -> StreamGroupDeletedFluentBuilder
Waits until a stream group is deleted
Sourcefn wait_until_stream_session_active(&self) -> StreamSessionActiveFluentBuilder
fn wait_until_stream_session_active(&self) -> StreamSessionActiveFluentBuilder
Waits until a stream session is active