[][src]Struct rusoto_fsx::DataRepositoryTaskFilter

pub struct DataRepositoryTaskFilter {
    pub name: Option<String>,
    pub values: Option<Vec<String>>,
}

(Optional) An array of filter objects you can use to filter the response of data repository tasks you will see in the the response. You can filter the tasks returned in the response by one or more file system IDs, task lifecycles, and by task type. A filter object consists of a filter Name, and one or more Values for the filter.

Fields

name: Option<String>

Name of the task property to use in filtering the tasks returned in the response.

  • Use file-system-id to retrieve data repository tasks for specific file systems.

  • Use task-lifecycle to retrieve data repository tasks with one or more specific lifecycle states, as follows: CANCELED, EXECUTING, FAILED, PENDING, and SUCCEEDED.

values: Option<Vec<String>>

Use Values to include the specific file system IDs and task lifecycle states for the filters you are using.

Trait Implementations

impl Clone for DataRepositoryTaskFilter[src]

impl Debug for DataRepositoryTaskFilter[src]

impl Default for DataRepositoryTaskFilter[src]

impl PartialEq<DataRepositoryTaskFilter> for DataRepositoryTaskFilter[src]

impl Serialize for DataRepositoryTaskFilter[src]

impl StructuralPartialEq for DataRepositoryTaskFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.