Struct aws_sdk_codepipeline::types::PipelineSummary
source · #[non_exhaustive]pub struct PipelineSummary {
pub name: Option<String>,
pub version: Option<i32>,
pub pipeline_type: Option<PipelineType>,
pub created: Option<DateTime>,
pub updated: Option<DateTime>,
}
Expand description
Returns a summary of a pipeline.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the pipeline.
version: Option<i32>
The version number of the pipeline.
pipeline_type: Option<PipelineType>
CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications.
-
V1 type pipelines have a JSON structure that contains standard pipeline, stage, and action-level parameters.
-
V2 type pipelines have the same structure as a V1 type, along with additional parameters for release safety and trigger configuration.
Including V2 parameters, such as triggers on Git tags, in the pipeline JSON when creating or updating a pipeline will result in the pipeline having the V2 type of pipeline and the associated costs.
For information about pricing for CodePipeline, see Pricing.
For information about which type of pipeline to choose, see What type of pipeline is right for me?.
V2 type pipelines, along with triggers on Git tags and pipeline-level variables, are not currently supported for CloudFormation and CDK resources in CodePipeline. For more information about V2 type pipelines, see Pipeline types in the CodePipeline User Guide.
created: Option<DateTime>
The date and time the pipeline was created, in timestamp format.
updated: Option<DateTime>
The date and time of the last update to the pipeline, in timestamp format.
Implementations§
source§impl PipelineSummary
impl PipelineSummary
sourcepub fn pipeline_type(&self) -> Option<&PipelineType>
pub fn pipeline_type(&self) -> Option<&PipelineType>
CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications.
-
V1 type pipelines have a JSON structure that contains standard pipeline, stage, and action-level parameters.
-
V2 type pipelines have the same structure as a V1 type, along with additional parameters for release safety and trigger configuration.
Including V2 parameters, such as triggers on Git tags, in the pipeline JSON when creating or updating a pipeline will result in the pipeline having the V2 type of pipeline and the associated costs.
For information about pricing for CodePipeline, see Pricing.
For information about which type of pipeline to choose, see What type of pipeline is right for me?.
V2 type pipelines, along with triggers on Git tags and pipeline-level variables, are not currently supported for CloudFormation and CDK resources in CodePipeline. For more information about V2 type pipelines, see Pipeline types in the CodePipeline User Guide.
source§impl PipelineSummary
impl PipelineSummary
sourcepub fn builder() -> PipelineSummaryBuilder
pub fn builder() -> PipelineSummaryBuilder
Creates a new builder-style object to manufacture PipelineSummary
.
Trait Implementations§
source§impl Clone for PipelineSummary
impl Clone for PipelineSummary
source§fn clone(&self) -> PipelineSummary
fn clone(&self) -> PipelineSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipelineSummary
impl Debug for PipelineSummary
source§impl PartialEq for PipelineSummary
impl PartialEq for PipelineSummary
source§fn eq(&self, other: &PipelineSummary) -> bool
fn eq(&self, other: &PipelineSummary) -> bool
self
and other
values to be equal, and is used
by ==
.