pub struct ListTaskExecutionsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub task_arn: Option<String>,
}
Expand description
ListTaskExecutions
Fields§
§max_results: Option<i64>
The maximum number of executed tasks to list.
next_token: Option<String>
An opaque string that indicates the position at which to begin the next list of the executed tasks.
task_arn: Option<String>
The Amazon Resource Name (ARN) of the task whose tasks you want to list.
Trait Implementations§
Source§impl Clone for ListTaskExecutionsRequest
impl Clone for ListTaskExecutionsRequest
Source§fn clone(&self) -> ListTaskExecutionsRequest
fn clone(&self) -> ListTaskExecutionsRequest
Returns a copy 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 Debug for ListTaskExecutionsRequest
impl Debug for ListTaskExecutionsRequest
Source§impl Default for ListTaskExecutionsRequest
impl Default for ListTaskExecutionsRequest
Source§fn default() -> ListTaskExecutionsRequest
fn default() -> ListTaskExecutionsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListTaskExecutionsRequest
Auto Trait Implementations§
impl Freeze for ListTaskExecutionsRequest
impl RefUnwindSafe for ListTaskExecutionsRequest
impl Send for ListTaskExecutionsRequest
impl Sync for ListTaskExecutionsRequest
impl Unpin for ListTaskExecutionsRequest
impl UnwindSafe for ListTaskExecutionsRequest
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