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;
fn wait_until_queue_limit_association_stopped(
&self,
) -> QueueLimitAssociationStoppedFluentBuilder;
}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
Sourcefn wait_until_queue_limit_association_stopped(
&self,
) -> QueueLimitAssociationStoppedFluentBuilder
fn wait_until_queue_limit_association_stopped( &self, ) -> QueueLimitAssociationStoppedFluentBuilder
Wait until a QueueLimitAssociation is stopped. Use this after setting the status to STOP_LIMIT_USAGE_AND_COMPLETE_TASKS or STOP_LIMIT_USAGE_AND_CANCEL_TASKS to wait for a QueueLimitAssociation to reach STOPPED