pub struct GetPipelineStateOutput {
pub created: Option<f64>,
pub pipeline_name: Option<String>,
pub pipeline_version: Option<i64>,
pub stage_states: Option<Vec<StageState>>,
pub updated: Option<f64>,
}
Expand description
Represents the output of a GetPipelineState
action.
Fields§
§created: Option<f64>
The date and time the pipeline was created, in timestamp format.
pipeline_name: Option<String>
The name of the pipeline for which you want to get the state.
pipeline_version: Option<i64>
The version number of the pipeline.
A newly created pipeline is always assigned a version number of 1
.
stage_states: Option<Vec<StageState>>
A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
updated: Option<f64>
The date and time the pipeline was last updated, in timestamp format.
Trait Implementations§
Source§impl Clone for GetPipelineStateOutput
impl Clone for GetPipelineStateOutput
Source§fn clone(&self) -> GetPipelineStateOutput
fn clone(&self) -> GetPipelineStateOutput
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 GetPipelineStateOutput
impl Debug for GetPipelineStateOutput
Source§impl Default for GetPipelineStateOutput
impl Default for GetPipelineStateOutput
Source§fn default() -> GetPipelineStateOutput
fn default() -> GetPipelineStateOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPipelineStateOutput
impl<'de> Deserialize<'de> for GetPipelineStateOutput
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 GetPipelineStateOutput
impl PartialEq for GetPipelineStateOutput
impl StructuralPartialEq for GetPipelineStateOutput
Auto Trait Implementations§
impl Freeze for GetPipelineStateOutput
impl RefUnwindSafe for GetPipelineStateOutput
impl Send for GetPipelineStateOutput
impl Sync for GetPipelineStateOutput
impl Unpin for GetPipelineStateOutput
impl UnwindSafe for GetPipelineStateOutput
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