Waiters

Trait Waiters 

Source
pub trait Waiters {
    // Required methods
    fn wait_until_anomaly_detector_active(
        &self,
    ) -> AnomalyDetectorActiveFluentBuilder;
    fn wait_until_anomaly_detector_deleted(
        &self,
    ) -> AnomalyDetectorDeletedFluentBuilder;
    fn wait_until_scraper_active(&self) -> ScraperActiveFluentBuilder;
    fn wait_until_scraper_deleted(&self) -> ScraperDeletedFluentBuilder;
    fn wait_until_workspace_active(&self) -> WorkspaceActiveFluentBuilder;
    fn wait_until_workspace_deleted(&self) -> WorkspaceDeletedFluentBuilder;
}
Expand description

Waiter functions for the client.

Import this trait to get wait_until methods on the client.

Required Methods§

Source

fn wait_until_anomaly_detector_active( &self, ) -> AnomalyDetectorActiveFluentBuilder

Wait until the anomaly detector reaches ACTIVE status

Source

fn wait_until_anomaly_detector_deleted( &self, ) -> AnomalyDetectorDeletedFluentBuilder

Wait until the anomaly detector reaches DELETED status

Source

fn wait_until_scraper_active(&self) -> ScraperActiveFluentBuilder

Wait until a scraper reaches ACTIVE status

Source

fn wait_until_scraper_deleted(&self) -> ScraperDeletedFluentBuilder

Wait until a scraper reaches DELETED status

Source

fn wait_until_workspace_active(&self) -> WorkspaceActiveFluentBuilder

Wait until a workspace reaches ACTIVE status

Source

fn wait_until_workspace_deleted(&self) -> WorkspaceDeletedFluentBuilder

Wait until a workspace reaches DELETED status

Implementors§