pub struct ListPipelineExecutionsOutput {
pub next_token: Option<String>,
pub pipeline_execution_summaries: Option<Vec<PipelineExecutionSummary>>,
}
Expand description
Represents the output of a ListPipelineExecutions
action.
Fields§
§next_token: Option<String>
A token that can be used in the next ListPipelineExecutions
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.
pipeline_execution_summaries: Option<Vec<PipelineExecutionSummary>>
A list of executions in the history of a pipeline.
Trait Implementations§
Source§impl Clone for ListPipelineExecutionsOutput
impl Clone for ListPipelineExecutionsOutput
Source§fn clone(&self) -> ListPipelineExecutionsOutput
fn clone(&self) -> ListPipelineExecutionsOutput
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 ListPipelineExecutionsOutput
impl Debug for ListPipelineExecutionsOutput
Source§impl Default for ListPipelineExecutionsOutput
impl Default for ListPipelineExecutionsOutput
Source§fn default() -> ListPipelineExecutionsOutput
fn default() -> ListPipelineExecutionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPipelineExecutionsOutput
impl<'de> Deserialize<'de> for ListPipelineExecutionsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListPipelineExecutionsOutput
impl PartialEq for ListPipelineExecutionsOutput
Source§fn eq(&self, other: &ListPipelineExecutionsOutput) -> bool
fn eq(&self, other: &ListPipelineExecutionsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListPipelineExecutionsOutput
Auto Trait Implementations§
impl Freeze for ListPipelineExecutionsOutput
impl RefUnwindSafe for ListPipelineExecutionsOutput
impl Send for ListPipelineExecutionsOutput
impl Sync for ListPipelineExecutionsOutput
impl Unpin for ListPipelineExecutionsOutput
impl UnwindSafe for ListPipelineExecutionsOutput
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