pub struct DescribeDataRepositoryTasksRequest {
pub filters: Option<Vec<DataRepositoryTaskFilter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub task_ids: Option<Vec<String>>,
}Fields§
§filters: Option<Vec<DataRepositoryTaskFilter>>(Optional) You can use filters to narrow the DescribeDataRepositoryTasks response to include just tasks for specific file systems, or tasks in a specific lifecycle state.
max_results: Option<i64>§next_token: Option<String>§task_ids: Option<Vec<String>>(Optional) IDs of the tasks whose descriptions you want to retrieve (String).
Trait Implementations§
Source§impl Clone for DescribeDataRepositoryTasksRequest
impl Clone for DescribeDataRepositoryTasksRequest
Source§fn clone(&self) -> DescribeDataRepositoryTasksRequest
fn clone(&self) -> DescribeDataRepositoryTasksRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DescribeDataRepositoryTasksRequest
impl Default for DescribeDataRepositoryTasksRequest
Source§fn default() -> DescribeDataRepositoryTasksRequest
fn default() -> DescribeDataRepositoryTasksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeDataRepositoryTasksRequest
impl PartialEq for DescribeDataRepositoryTasksRequest
Source§fn eq(&self, other: &DescribeDataRepositoryTasksRequest) -> bool
fn eq(&self, other: &DescribeDataRepositoryTasksRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeDataRepositoryTasksRequest
Auto Trait Implementations§
impl Freeze for DescribeDataRepositoryTasksRequest
impl RefUnwindSafe for DescribeDataRepositoryTasksRequest
impl Send for DescribeDataRepositoryTasksRequest
impl Sync for DescribeDataRepositoryTasksRequest
impl Unpin for DescribeDataRepositoryTasksRequest
impl UnwindSafe for DescribeDataRepositoryTasksRequest
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
Mutably borrows from an owned value. Read more