#[non_exhaustive]pub struct CreateTaskSetOutputBuilder { /* private fields */ }
Expand description
A builder for CreateTaskSetOutput
.
Implementations§
source§impl CreateTaskSetOutputBuilder
impl CreateTaskSetOutputBuilder
sourcepub fn task_set(self, input: TaskSet) -> Self
pub fn task_set(self, input: TaskSet) -> Self
Information about a set of Amazon ECS tasks in either an CodeDeploy or an EXTERNAL
deployment. A task set includes details such as the desired number of tasks, how many tasks are running, and whether the task set serves production traffic.
sourcepub fn set_task_set(self, input: Option<TaskSet>) -> Self
pub fn set_task_set(self, input: Option<TaskSet>) -> Self
Information about a set of Amazon ECS tasks in either an CodeDeploy or an EXTERNAL
deployment. A task set includes details such as the desired number of tasks, how many tasks are running, and whether the task set serves production traffic.
sourcepub fn get_task_set(&self) -> &Option<TaskSet>
pub fn get_task_set(&self) -> &Option<TaskSet>
Information about a set of Amazon ECS tasks in either an CodeDeploy or an EXTERNAL
deployment. A task set includes details such as the desired number of tasks, how many tasks are running, and whether the task set serves production traffic.
sourcepub fn build(self) -> CreateTaskSetOutput
pub fn build(self) -> CreateTaskSetOutput
Consumes the builder and constructs a CreateTaskSetOutput
.
Trait Implementations§
source§impl Clone for CreateTaskSetOutputBuilder
impl Clone for CreateTaskSetOutputBuilder
source§fn clone(&self) -> CreateTaskSetOutputBuilder
fn clone(&self) -> CreateTaskSetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateTaskSetOutputBuilder
impl Debug for CreateTaskSetOutputBuilder
source§impl Default for CreateTaskSetOutputBuilder
impl Default for CreateTaskSetOutputBuilder
source§fn default() -> CreateTaskSetOutputBuilder
fn default() -> CreateTaskSetOutputBuilder
source§impl PartialEq for CreateTaskSetOutputBuilder
impl PartialEq for CreateTaskSetOutputBuilder
source§fn eq(&self, other: &CreateTaskSetOutputBuilder) -> bool
fn eq(&self, other: &CreateTaskSetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateTaskSetOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateTaskSetOutputBuilder
impl RefUnwindSafe for CreateTaskSetOutputBuilder
impl Send for CreateTaskSetOutputBuilder
impl Sync for CreateTaskSetOutputBuilder
impl Unpin for CreateTaskSetOutputBuilder
impl UnwindSafe for CreateTaskSetOutputBuilder
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