pub struct DescribePipelineResponse {
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub last_modified_by: Option<UserContext>,
pub last_modified_time: Option<f64>,
pub last_run_time: Option<f64>,
pub pipeline_arn: Option<String>,
pub pipeline_definition: Option<String>,
pub pipeline_description: Option<String>,
pub pipeline_display_name: Option<String>,
pub pipeline_name: Option<String>,
pub pipeline_status: Option<String>,
pub role_arn: Option<String>,
}
Fields§
§created_by: Option<UserContext>
§creation_time: Option<f64>
The time when the pipeline was created.
last_modified_by: Option<UserContext>
§last_modified_time: Option<f64>
The time when the pipeline was last modified.
last_run_time: Option<f64>
The time when the pipeline was last run.
pipeline_arn: Option<String>
The Amazon Resource Name (ARN) of the pipeline.
pipeline_definition: Option<String>
The JSON pipeline definition.
pipeline_description: Option<String>
The description of the pipeline.
pipeline_display_name: Option<String>
The display name of the pipeline.
pipeline_name: Option<String>
The name of the pipeline.
pipeline_status: Option<String>
The status of the pipeline execution.
role_arn: Option<String>
The Amazon Resource Name (ARN) that the pipeline uses to execute.
Trait Implementations§
Source§impl Clone for DescribePipelineResponse
impl Clone for DescribePipelineResponse
Source§fn clone(&self) -> DescribePipelineResponse
fn clone(&self) -> DescribePipelineResponse
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 DescribePipelineResponse
impl Debug for DescribePipelineResponse
Source§impl Default for DescribePipelineResponse
impl Default for DescribePipelineResponse
Source§fn default() -> DescribePipelineResponse
fn default() -> DescribePipelineResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribePipelineResponse
impl<'de> Deserialize<'de> for DescribePipelineResponse
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 DescribePipelineResponse
impl PartialEq for DescribePipelineResponse
impl StructuralPartialEq for DescribePipelineResponse
Auto Trait Implementations§
impl Freeze for DescribePipelineResponse
impl RefUnwindSafe for DescribePipelineResponse
impl Send for DescribePipelineResponse
impl Sync for DescribePipelineResponse
impl Unpin for DescribePipelineResponse
impl UnwindSafe for DescribePipelineResponse
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