#[non_exhaustive]pub struct DeleteTaskSetInputBuilder { /* private fields */ }
Expand description
A builder for DeleteTaskSetInput
.
Implementations§
source§impl DeleteTaskSetInputBuilder
impl DeleteTaskSetInputBuilder
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 that the task set found in to delete.
This field is required.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 that the task set found in to delete.
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 that the task set found in to delete.
sourcepub fn service(self, input: impl Into<String>) -> Self
pub fn service(self, input: impl Into<String>) -> Self
The short name or full Amazon Resource Name (ARN) of the service that hosts the task set 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 short name or full Amazon Resource Name (ARN) of the service that hosts the task set to delete.
sourcepub fn get_service(&self) -> &Option<String>
pub fn get_service(&self) -> &Option<String>
The short name or full Amazon Resource Name (ARN) of the service that hosts the task set to delete.
sourcepub fn task_set(self, input: impl Into<String>) -> Self
pub fn task_set(self, input: impl Into<String>) -> Self
The task set ID or full Amazon Resource Name (ARN) of the task set to delete.
This field is required.sourcepub fn set_task_set(self, input: Option<String>) -> Self
pub fn set_task_set(self, input: Option<String>) -> Self
The task set ID or full Amazon Resource Name (ARN) of the task set to delete.
sourcepub fn get_task_set(&self) -> &Option<String>
pub fn get_task_set(&self) -> &Option<String>
The task set ID or full Amazon Resource Name (ARN) of the task set to delete.
sourcepub fn force(self, input: bool) -> Self
pub fn force(self, input: bool) -> Self
If true
, you can delete a task set even if it hasn't been scaled down to zero.
sourcepub fn set_force(self, input: Option<bool>) -> Self
pub fn set_force(self, input: Option<bool>) -> Self
If true
, you can delete a task set even if it hasn't been scaled down to zero.
sourcepub fn get_force(&self) -> &Option<bool>
pub fn get_force(&self) -> &Option<bool>
If true
, you can delete a task set even if it hasn't been scaled down to zero.
sourcepub fn build(self) -> Result<DeleteTaskSetInput, BuildError>
pub fn build(self) -> Result<DeleteTaskSetInput, BuildError>
Consumes the builder and constructs a DeleteTaskSetInput
.
source§impl DeleteTaskSetInputBuilder
impl DeleteTaskSetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteTaskSetOutput, SdkError<DeleteTaskSetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteTaskSetOutput, SdkError<DeleteTaskSetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteTaskSetInputBuilder
impl Clone for DeleteTaskSetInputBuilder
source§fn clone(&self) -> DeleteTaskSetInputBuilder
fn clone(&self) -> DeleteTaskSetInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteTaskSetInputBuilder
impl Debug for DeleteTaskSetInputBuilder
source§impl Default for DeleteTaskSetInputBuilder
impl Default for DeleteTaskSetInputBuilder
source§fn default() -> DeleteTaskSetInputBuilder
fn default() -> DeleteTaskSetInputBuilder
source§impl PartialEq for DeleteTaskSetInputBuilder
impl PartialEq for DeleteTaskSetInputBuilder
source§fn eq(&self, other: &DeleteTaskSetInputBuilder) -> bool
fn eq(&self, other: &DeleteTaskSetInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.