pub trait Waiters {
// Required methods
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§
Sourcefn wait_until_scraper_active(&self) -> ScraperActiveFluentBuilder
fn wait_until_scraper_active(&self) -> ScraperActiveFluentBuilder
Wait until a scraper reaches ACTIVE status
Sourcefn wait_until_scraper_deleted(&self) -> ScraperDeletedFluentBuilder
fn wait_until_scraper_deleted(&self) -> ScraperDeletedFluentBuilder
Wait until a scraper reaches DELETED status
Sourcefn wait_until_workspace_active(&self) -> WorkspaceActiveFluentBuilder
fn wait_until_workspace_active(&self) -> WorkspaceActiveFluentBuilder
Wait until a workspace reaches ACTIVE status
Sourcefn wait_until_workspace_deleted(&self) -> WorkspaceDeletedFluentBuilder
fn wait_until_workspace_deleted(&self) -> WorkspaceDeletedFluentBuilder
Wait until a workspace reaches DELETED status