#[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 ==
.