Struct aws_sdk_ecs::operation::list_task_definitions::builders::ListTaskDefinitionsOutputBuilder
source · #[non_exhaustive]pub struct ListTaskDefinitionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListTaskDefinitionsOutput
.
Implementations§
source§impl ListTaskDefinitionsOutputBuilder
impl ListTaskDefinitionsOutputBuilder
sourcepub fn task_definition_arns(self, input: impl Into<String>) -> Self
pub fn task_definition_arns(self, input: impl Into<String>) -> Self
Appends an item to task_definition_arns
.
To override the contents of this collection use set_task_definition_arns
.
The list of task definition Amazon Resource Name (ARN) entries for the ListTaskDefinitions
request.
sourcepub fn set_task_definition_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_task_definition_arns(self, input: Option<Vec<String>>) -> Self
The list of task definition Amazon Resource Name (ARN) entries for the ListTaskDefinitions
request.
sourcepub fn get_task_definition_arns(&self) -> &Option<Vec<String>>
pub fn get_task_definition_arns(&self) -> &Option<Vec<String>>
The list of task definition Amazon Resource Name (ARN) entries for the ListTaskDefinitions
request.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The nextToken
value to include in a future ListTaskDefinitions
request. When the results of a ListTaskDefinitions
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken
value to include in a future ListTaskDefinitions
request. When the results of a ListTaskDefinitions
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken
value to include in a future ListTaskDefinitions
request. When the results of a ListTaskDefinitions
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn build(self) -> ListTaskDefinitionsOutput
pub fn build(self) -> ListTaskDefinitionsOutput
Consumes the builder and constructs a ListTaskDefinitionsOutput
.
Trait Implementations§
source§impl Clone for ListTaskDefinitionsOutputBuilder
impl Clone for ListTaskDefinitionsOutputBuilder
source§fn clone(&self) -> ListTaskDefinitionsOutputBuilder
fn clone(&self) -> ListTaskDefinitionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListTaskDefinitionsOutputBuilder
impl Default for ListTaskDefinitionsOutputBuilder
source§fn default() -> ListTaskDefinitionsOutputBuilder
fn default() -> ListTaskDefinitionsOutputBuilder
source§impl PartialEq for ListTaskDefinitionsOutputBuilder
impl PartialEq for ListTaskDefinitionsOutputBuilder
source§fn eq(&self, other: &ListTaskDefinitionsOutputBuilder) -> bool
fn eq(&self, other: &ListTaskDefinitionsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTaskDefinitionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListTaskDefinitionsOutputBuilder
impl RefUnwindSafe for ListTaskDefinitionsOutputBuilder
impl Send for ListTaskDefinitionsOutputBuilder
impl Sync for ListTaskDefinitionsOutputBuilder
impl Unpin for ListTaskDefinitionsOutputBuilder
impl UnwindSafe for ListTaskDefinitionsOutputBuilder
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