pub trait Waiters {
// Required methods
fn wait_until_fleet_active(&self) -> FleetActiveFluentBuilder;
fn wait_until_job_create_complete(&self) -> JobCreateCompleteFluentBuilder;
fn wait_until_license_endpoint_valid(
&self,
) -> LicenseEndpointValidFluentBuilder;
fn wait_until_license_endpoint_deleted(
&self,
) -> LicenseEndpointDeletedFluentBuilder;
fn wait_until_queue_scheduling_blocked(
&self,
) -> QueueSchedulingBlockedFluentBuilder;
fn wait_until_queue_scheduling(&self) -> QueueSchedulingFluentBuilder;
fn wait_until_queue_fleet_association_stopped(
&self,
) -> QueueFleetAssociationStoppedFluentBuilder;
}
Expand description
Waiter functions for the client.
Import this trait to get wait_until
methods on the client.
Required Methods§
Sourcefn wait_until_fleet_active(&self) -> FleetActiveFluentBuilder
fn wait_until_fleet_active(&self) -> FleetActiveFluentBuilder
Wait until a Fleet is activated. Use this after invoking CreateFleet or UpdateFleet.
Sourcefn wait_until_job_create_complete(&self) -> JobCreateCompleteFluentBuilder
fn wait_until_job_create_complete(&self) -> JobCreateCompleteFluentBuilder
Wait until a Job is created. Use this after invoking CreateJob.
Sourcefn wait_until_license_endpoint_valid(&self) -> LicenseEndpointValidFluentBuilder
fn wait_until_license_endpoint_valid(&self) -> LicenseEndpointValidFluentBuilder
Wait until a LicenseEndpoint is Ready. Use this after invoking CreateLicenseEndpoint.
Sourcefn wait_until_license_endpoint_deleted(
&self,
) -> LicenseEndpointDeletedFluentBuilder
fn wait_until_license_endpoint_deleted( &self, ) -> LicenseEndpointDeletedFluentBuilder
Wait until a LicenseEndpoint is Deleted. Use this after invoking DeleteLicenseEndpoint.
Sourcefn wait_until_queue_scheduling_blocked(
&self,
) -> QueueSchedulingBlockedFluentBuilder
fn wait_until_queue_scheduling_blocked( &self, ) -> QueueSchedulingBlockedFluentBuilder
Wait for queue_scheduling_blocked
Sourcefn wait_until_queue_scheduling(&self) -> QueueSchedulingFluentBuilder
fn wait_until_queue_scheduling(&self) -> QueueSchedulingFluentBuilder
Wait for queue_scheduling
Sourcefn wait_until_queue_fleet_association_stopped(
&self,
) -> QueueFleetAssociationStoppedFluentBuilder
fn wait_until_queue_fleet_association_stopped( &self, ) -> QueueFleetAssociationStoppedFluentBuilder
Wait until a QueueFleetAssociation is stopped. Use this after setting the status to STOP_SCHEDULING_AND_COMPLETE_TASKS or STOP_SCHEDULING_AND_CANCEL_TASKS to wait for a QueueFleetAssociation to reach STOPPED