Struct aws_sdk_datasync::input::ListTasksInput
source · [−]#[non_exhaustive]pub struct ListTasksInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<TaskFilter>>,
}
Expand description
ListTasksRequest
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_results: Option<i32>
The maximum number of tasks to return.
next_token: Option<String>
An opaque string that indicates the position at which to begin the next list of tasks.
filters: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTasks, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTasks, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListTasks
>
Creates a new builder-style object to manufacture ListTasksInput
The maximum number of tasks to return.
An opaque string that indicates the position at which to begin the next list of tasks.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListTasksInput
impl Send for ListTasksInput
impl Sync for ListTasksInput
impl Unpin for ListTasksInput
impl UnwindSafe for ListTasksInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more