#[non_exhaustive]pub struct DeleteServiceInputBuilder { /* private fields */ }
Expand description
A builder for DeleteServiceInput
.
Implementations§
source§impl DeleteServiceInputBuilder
impl DeleteServiceInputBuilder
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) of the cluster that hosts the service to delete. If you do not specify a cluster, the default cluster is assumed.
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) of the cluster that hosts the service to delete. If you do not specify a cluster, the default cluster is assumed.
sourcepub fn get_cluster(&self) -> &Option<String>
pub fn get_cluster(&self) -> &Option<String>
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service to delete. If you do not specify a cluster, the default cluster is assumed.
sourcepub fn service(self, input: impl Into<String>) -> Self
pub fn service(self, input: impl Into<String>) -> Self
The name of the service to delete.
This field is required.sourcepub fn set_service(self, input: Option<String>) -> Self
pub fn set_service(self, input: Option<String>) -> Self
The name of the service to delete.
sourcepub fn get_service(&self) -> &Option<String>
pub fn get_service(&self) -> &Option<String>
The name of the service to delete.
sourcepub fn force(self, input: bool) -> Self
pub fn force(self, input: bool) -> Self
If true
, allows you to delete a service even if it wasn't scaled down to zero tasks. It's only necessary to use this if the service uses the REPLICA
scheduling strategy.
sourcepub fn set_force(self, input: Option<bool>) -> Self
pub fn set_force(self, input: Option<bool>) -> Self
If true
, allows you to delete a service even if it wasn't scaled down to zero tasks. It's only necessary to use this if the service uses the REPLICA
scheduling strategy.
sourcepub fn get_force(&self) -> &Option<bool>
pub fn get_force(&self) -> &Option<bool>
If true
, allows you to delete a service even if it wasn't scaled down to zero tasks. It's only necessary to use this if the service uses the REPLICA
scheduling strategy.
sourcepub fn build(self) -> Result<DeleteServiceInput, BuildError>
pub fn build(self) -> Result<DeleteServiceInput, BuildError>
Consumes the builder and constructs a DeleteServiceInput
.
source§impl DeleteServiceInputBuilder
impl DeleteServiceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteServiceOutput, SdkError<DeleteServiceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteServiceOutput, SdkError<DeleteServiceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteServiceInputBuilder
impl Clone for DeleteServiceInputBuilder
source§fn clone(&self) -> DeleteServiceInputBuilder
fn clone(&self) -> DeleteServiceInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteServiceInputBuilder
impl Debug for DeleteServiceInputBuilder
source§impl Default for DeleteServiceInputBuilder
impl Default for DeleteServiceInputBuilder
source§fn default() -> DeleteServiceInputBuilder
fn default() -> DeleteServiceInputBuilder
source§impl PartialEq for DeleteServiceInputBuilder
impl PartialEq for DeleteServiceInputBuilder
source§fn eq(&self, other: &DeleteServiceInputBuilder) -> bool
fn eq(&self, other: &DeleteServiceInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteServiceInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteServiceInputBuilder
impl RefUnwindSafe for DeleteServiceInputBuilder
impl Send for DeleteServiceInputBuilder
impl Sync for DeleteServiceInputBuilder
impl Unpin for DeleteServiceInputBuilder
impl UnwindSafe for DeleteServiceInputBuilder
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