Waiters

Trait Waiters 

Source
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§

Source

fn wait_until_application_ready(&self) -> ApplicationReadyFluentBuilder

Waits until an application is ready

Source

fn wait_until_application_deleted(&self) -> ApplicationDeletedFluentBuilder

Waits until an application is deleted

Source

fn wait_until_stream_group_active(&self) -> StreamGroupActiveFluentBuilder

Waits until a stream group is active

Source

fn wait_until_stream_group_deleted(&self) -> StreamGroupDeletedFluentBuilder

Waits until a stream group is deleted

Source

fn wait_until_stream_session_active(&self) -> StreamSessionActiveFluentBuilder

Waits until a stream session is active

Implementors§