Struct cfn::aws::codepipeline::PipelineProperties [] [src]

pub struct PipelineProperties {
    pub artifact_store: Value<ArtifactStore>,
    pub disable_inbound_stage_transitions: Option<ValueList<StageTransition>>,
    pub name: Option<Value<String>>,
    pub restart_execution_on_update: Option<Value<bool>>,
    pub role_arn: Value<String>,
    pub stages: ValueList<StageDeclaration>,
}

Properties for the Pipeline resource.

Fields

Property ArtifactStore.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DisableInboundStageTransitions.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RestartExecutionOnUpdate.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property RoleArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Stages.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for PipelineProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for PipelineProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for PipelineProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<PipelineProperties> for Pipeline
[src]

[src]

Performs the conversion.

Auto Trait Implementations