Struct aws_sdk_datasync::operation::list_task_executions::builders::ListTaskExecutionsOutputBuilder
source · #[non_exhaustive]pub struct ListTaskExecutionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListTaskExecutionsOutput
.
Implementations§
source§impl ListTaskExecutionsOutputBuilder
impl ListTaskExecutionsOutputBuilder
sourcepub fn task_executions(self, input: TaskExecutionListEntry) -> Self
pub fn task_executions(self, input: TaskExecutionListEntry) -> Self
Appends an item to task_executions
.
To override the contents of this collection use set_task_executions
.
A list of the task's executions.
sourcepub fn set_task_executions(
self,
input: Option<Vec<TaskExecutionListEntry>>,
) -> Self
pub fn set_task_executions( self, input: Option<Vec<TaskExecutionListEntry>>, ) -> Self
A list of the task's executions.
sourcepub fn get_task_executions(&self) -> &Option<Vec<TaskExecutionListEntry>>
pub fn get_task_executions(&self) -> &Option<Vec<TaskExecutionListEntry>>
A list of the task's executions.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The opaque string that indicates the position to begin the next list of results in the response.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The opaque string that indicates the position to begin the next list of results in the response.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The opaque string that indicates the position to begin the next list of results in the response.
sourcepub fn build(self) -> ListTaskExecutionsOutput
pub fn build(self) -> ListTaskExecutionsOutput
Consumes the builder and constructs a ListTaskExecutionsOutput
.
Trait Implementations§
source§impl Clone for ListTaskExecutionsOutputBuilder
impl Clone for ListTaskExecutionsOutputBuilder
source§fn clone(&self) -> ListTaskExecutionsOutputBuilder
fn clone(&self) -> ListTaskExecutionsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for ListTaskExecutionsOutputBuilder
impl Default for ListTaskExecutionsOutputBuilder
source§fn default() -> ListTaskExecutionsOutputBuilder
fn default() -> ListTaskExecutionsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListTaskExecutionsOutputBuilder
impl PartialEq for ListTaskExecutionsOutputBuilder
source§fn eq(&self, other: &ListTaskExecutionsOutputBuilder) -> bool
fn eq(&self, other: &ListTaskExecutionsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTaskExecutionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListTaskExecutionsOutputBuilder
impl RefUnwindSafe for ListTaskExecutionsOutputBuilder
impl Send for ListTaskExecutionsOutputBuilder
impl Sync for ListTaskExecutionsOutputBuilder
impl Unpin for ListTaskExecutionsOutputBuilder
impl UnwindSafe for ListTaskExecutionsOutputBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.