pub struct ServicesInactiveFluentBuilder { /* private fields */ }
Expand description
Fluent builder for the services_inactive
waiter.
This builder is intended to be used similar to the other fluent builders for
normal operations on the client. However, instead of a send
method, it has
a wait
method that takes a maximum amount of time to wait.
Construct this fluent builder using the client by importing the
Waiters
trait and calling the methods
prefixed with wait_until
.
Implementations§
source§impl ServicesInactiveFluentBuilder
impl ServicesInactiveFluentBuilder
sourcepub fn as_input(&self) -> &DescribeServicesInputBuilder
pub fn as_input(&self) -> &DescribeServicesInputBuilder
Access the DescribeServices as a reference.
sourcepub async fn wait(
self,
max_wait: Duration
) -> Result<ServicesInactiveFinalPoll, WaitUntilServicesInactiveError>
pub async fn wait( self, max_wait: Duration ) -> Result<ServicesInactiveFinalPoll, WaitUntilServicesInactiveError>
Wait for services_inactive
sourcepub fn cluster(self, input: impl Into<String>) -> Self
pub fn cluster(self, input: impl Into<String>) -> Self
The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.
sourcepub fn set_cluster(self, input: Option<String>) -> Self
pub fn set_cluster(self, input: Option<String>) -> Self
The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.
sourcepub fn get_cluster(&self) -> &Option<String>
pub fn get_cluster(&self) -> &Option<String>
The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.
sourcepub fn services(self, input: impl Into<String>) -> Self
pub fn services(self, input: impl Into<String>) -> Self
Appends an item to services
.
To override the contents of this collection use set_services
.
A list of services to describe. You may specify up to 10 services to describe in a single operation.
sourcepub fn set_services(self, input: Option<Vec<String>>) -> Self
pub fn set_services(self, input: Option<Vec<String>>) -> Self
A list of services to describe. You may specify up to 10 services to describe in a single operation.
sourcepub fn get_services(&self) -> &Option<Vec<String>>
pub fn get_services(&self) -> &Option<Vec<String>>
A list of services to describe. You may specify up to 10 services to describe in a single operation.
sourcepub fn include(self, input: ServiceField) -> Self
pub fn include(self, input: ServiceField) -> Self
Appends an item to include
.
To override the contents of this collection use set_include
.
Determines whether you want to see the resource tags for the service. If TAGS
is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.
sourcepub fn set_include(self, input: Option<Vec<ServiceField>>) -> Self
pub fn set_include(self, input: Option<Vec<ServiceField>>) -> Self
Determines whether you want to see the resource tags for the service. If TAGS
is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.
sourcepub fn get_include(&self) -> &Option<Vec<ServiceField>>
pub fn get_include(&self) -> &Option<Vec<ServiceField>>
Determines whether you want to see the resource tags for the service. If TAGS
is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.
Trait Implementations§
source§impl Clone for ServicesInactiveFluentBuilder
impl Clone for ServicesInactiveFluentBuilder
source§fn clone(&self) -> ServicesInactiveFluentBuilder
fn clone(&self) -> ServicesInactiveFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for ServicesInactiveFluentBuilder
impl !RefUnwindSafe for ServicesInactiveFluentBuilder
impl Send for ServicesInactiveFluentBuilder
impl Sync for ServicesInactiveFluentBuilder
impl Unpin for ServicesInactiveFluentBuilder
impl !UnwindSafe for ServicesInactiveFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more