pub struct ListActionExecutionsInput {
pub filter: Option<ActionExecutionFilter>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub pipeline_name: String,
}
Fields§
§filter: Option<ActionExecutionFilter>
Input information used to filter action execution history.
max_results: Option<i64>
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.
Detailed execution history is available for executions run on or after February 21, 2019.
next_token: Option<String>
The token that was returned from the previous ListActionExecutions
call, which can be used to return the next set of action executions in the list.
pipeline_name: String
The name of the pipeline for which you want to list action execution history.
Trait Implementations§
Source§impl Clone for ListActionExecutionsInput
impl Clone for ListActionExecutionsInput
Source§fn clone(&self) -> ListActionExecutionsInput
fn clone(&self) -> ListActionExecutionsInput
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 Debug for ListActionExecutionsInput
impl Debug for ListActionExecutionsInput
Source§impl Default for ListActionExecutionsInput
impl Default for ListActionExecutionsInput
Source§fn default() -> ListActionExecutionsInput
fn default() -> ListActionExecutionsInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListActionExecutionsInput
Auto Trait Implementations§
impl Freeze for ListActionExecutionsInput
impl RefUnwindSafe for ListActionExecutionsInput
impl Send for ListActionExecutionsInput
impl Sync for ListActionExecutionsInput
impl Unpin for ListActionExecutionsInput
impl UnwindSafe for ListActionExecutionsInput
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