#[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 ==
.