pub struct ListPipelineExecutionsInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub pipeline_name: String,
}
Expand description
Represents the input of a ListPipelineExecutions
action.
Fields§
§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. Pipeline history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.
next_token: Option<String>
The token that was returned from the previous ListPipelineExecutions
call, which can be used to return the next set of pipeline executions in the list.
pipeline_name: String
The name of the pipeline for which you want to get execution summary information.
Trait Implementations§
Source§impl Clone for ListPipelineExecutionsInput
impl Clone for ListPipelineExecutionsInput
Source§fn clone(&self) -> ListPipelineExecutionsInput
fn clone(&self) -> ListPipelineExecutionsInput
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 ListPipelineExecutionsInput
impl Debug for ListPipelineExecutionsInput
Source§impl Default for ListPipelineExecutionsInput
impl Default for ListPipelineExecutionsInput
Source§fn default() -> ListPipelineExecutionsInput
fn default() -> ListPipelineExecutionsInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListPipelineExecutionsInput
Auto Trait Implementations§
impl Freeze for ListPipelineExecutionsInput
impl RefUnwindSafe for ListPipelineExecutionsInput
impl Send for ListPipelineExecutionsInput
impl Sync for ListPipelineExecutionsInput
impl Unpin for ListPipelineExecutionsInput
impl UnwindSafe for ListPipelineExecutionsInput
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