pub trait Waiters {
// Required methods
fn wait_until_flow_active(&self) -> FlowActiveFluentBuilder;
fn wait_until_flow_deleted(&self) -> FlowDeletedFluentBuilder;
fn wait_until_flow_standby(&self) -> FlowStandbyFluentBuilder;
fn wait_until_input_standby(&self) -> InputStandbyFluentBuilder;
fn wait_until_input_deleted(&self) -> InputDeletedFluentBuilder;
fn wait_until_input_active(&self) -> InputActiveFluentBuilder;
fn wait_until_output_deleted(&self) -> OutputDeletedFluentBuilder;
fn wait_until_output_active(&self) -> OutputActiveFluentBuilder;
fn wait_until_output_standby(&self) -> OutputStandbyFluentBuilder;
fn wait_until_output_routed(&self) -> OutputRoutedFluentBuilder;
}Expand description
Waiter functions for the client.
Import this trait to get wait_until methods on the client.
Required Methods§
Sourcefn wait_until_flow_active(&self) -> FlowActiveFluentBuilder
fn wait_until_flow_active(&self) -> FlowActiveFluentBuilder
Wait until a flow is active
Sourcefn wait_until_flow_deleted(&self) -> FlowDeletedFluentBuilder
fn wait_until_flow_deleted(&self) -> FlowDeletedFluentBuilder
Wait until a flow is deleted
Sourcefn wait_until_flow_standby(&self) -> FlowStandbyFluentBuilder
fn wait_until_flow_standby(&self) -> FlowStandbyFluentBuilder
Wait until a flow is in standby mode
Sourcefn wait_until_input_standby(&self) -> InputStandbyFluentBuilder
fn wait_until_input_standby(&self) -> InputStandbyFluentBuilder
Wait until the Input is STANDBY
Sourcefn wait_until_input_deleted(&self) -> InputDeletedFluentBuilder
fn wait_until_input_deleted(&self) -> InputDeletedFluentBuilder
Wait until the Input is deleted
Sourcefn wait_until_input_active(&self) -> InputActiveFluentBuilder
fn wait_until_input_active(&self) -> InputActiveFluentBuilder
Wait until the Input is ACTIVE
Sourcefn wait_until_output_deleted(&self) -> OutputDeletedFluentBuilder
fn wait_until_output_deleted(&self) -> OutputDeletedFluentBuilder
Wait until the Output is deleted
Sourcefn wait_until_output_active(&self) -> OutputActiveFluentBuilder
fn wait_until_output_active(&self) -> OutputActiveFluentBuilder
Wait until the Output is ACTIVE
Sourcefn wait_until_output_standby(&self) -> OutputStandbyFluentBuilder
fn wait_until_output_standby(&self) -> OutputStandbyFluentBuilder
Wait until the Output is STANDBY
Sourcefn wait_until_output_routed(&self) -> OutputRoutedFluentBuilder
fn wait_until_output_routed(&self) -> OutputRoutedFluentBuilder
Wait until the Output is ROUTED