Struct aws_sdk_datasync::model::TaskFilter
source · [−]#[non_exhaustive]pub struct TaskFilter {
pub name: Option<TaskFilterName>,
pub values: Option<Vec<String>>,
pub operator: Option<Operator>,
}
Expand description
You can use API filters to narrow down the list of resources returned by ListTasks
. For example, to retrieve all tasks on a source location, you can use ListTasks
with filter name LocationId
and Operator Equals
with the ARN for the location.
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.name: Option<TaskFilterName>
The name of the filter being used. Each API call supports a list of filters that are available for it. For example, LocationId
for ListTasks
.
values: Option<Vec<String>>
The values that you want to filter for. For example, you might want to display only tasks for a specific destination location.
operator: Option<Operator>
The operator that is used to compare filter values (for example, Equals
or Contains
). For more about API filtering operators, see API filters for ListTasks and ListLocations.
Implementations
The name of the filter being used. Each API call supports a list of filters that are available for it. For example, LocationId
for ListTasks
.
The values that you want to filter for. For example, you might want to display only tasks for a specific destination location.
The operator that is used to compare filter values (for example, Equals
or Contains
). For more about API filtering operators, see API filters for ListTasks and ListLocations.
Creates a new builder-style object to manufacture TaskFilter
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 TaskFilter
impl Send for TaskFilter
impl Sync for TaskFilter
impl Unpin for TaskFilter
impl UnwindSafe for TaskFilter
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