#[non_exhaustive]pub struct ListTasksInputBuilder { /* private fields */ }
Expand description
A builder for ListTasksInput
.
Implementations§
source§impl ListTasksInputBuilder
impl ListTasksInputBuilder
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of tasks to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of tasks to return.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of tasks to return.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An opaque string that indicates the position at which to begin the next list of tasks.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An opaque string that indicates the position at which to begin the next list of tasks.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An opaque string that indicates the position at which to begin the next list of tasks.
sourcepub fn filters(self, input: TaskFilter) -> Self
pub fn filters(self, input: TaskFilter) -> Self
Appends an item to filters
.
To override the contents of this collection use set_filters
.
You can use API filters to narrow down the list of resources returned by ListTasks
. For example, to retrieve all tasks on a specific source location, you can use ListTasks
with filter name LocationId
and Operator Equals
with the ARN for the location.
sourcepub fn set_filters(self, input: Option<Vec<TaskFilter>>) -> Self
pub fn set_filters(self, input: Option<Vec<TaskFilter>>) -> Self
You can use API filters to narrow down the list of resources returned by ListTasks
. For example, to retrieve all tasks on a specific source location, you can use ListTasks
with filter name LocationId
and Operator Equals
with the ARN for the location.
sourcepub fn get_filters(&self) -> &Option<Vec<TaskFilter>>
pub fn get_filters(&self) -> &Option<Vec<TaskFilter>>
You can use API filters to narrow down the list of resources returned by ListTasks
. For example, to retrieve all tasks on a specific source location, you can use ListTasks
with filter name LocationId
and Operator Equals
with the ARN for the location.
sourcepub fn build(self) -> Result<ListTasksInput, BuildError>
pub fn build(self) -> Result<ListTasksInput, BuildError>
Consumes the builder and constructs a ListTasksInput
.
source§impl ListTasksInputBuilder
impl ListTasksInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListTasksOutput, SdkError<ListTasksError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListTasksOutput, SdkError<ListTasksError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListTasksInputBuilder
impl Clone for ListTasksInputBuilder
source§fn clone(&self) -> ListTasksInputBuilder
fn clone(&self) -> ListTasksInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTasksInputBuilder
impl Debug for ListTasksInputBuilder
source§impl Default for ListTasksInputBuilder
impl Default for ListTasksInputBuilder
source§fn default() -> ListTasksInputBuilder
fn default() -> ListTasksInputBuilder
source§impl PartialEq for ListTasksInputBuilder
impl PartialEq for ListTasksInputBuilder
source§fn eq(&self, other: &ListTasksInputBuilder) -> bool
fn eq(&self, other: &ListTasksInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTasksInputBuilder
Auto Trait Implementations§
impl Freeze for ListTasksInputBuilder
impl RefUnwindSafe for ListTasksInputBuilder
impl Send for ListTasksInputBuilder
impl Sync for ListTasksInputBuilder
impl Unpin for ListTasksInputBuilder
impl UnwindSafe for ListTasksInputBuilder
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> 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)
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>
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