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

pub struct PipelineProperties {
    pub activate: Option<Value<bool>>,
    pub description: Option<Value<String>>,
    pub name: Value<String>,
    pub parameter_objects: ValueList<ParameterObject>,
    pub parameter_values: Option<ValueList<ParameterValue>>,
    pub pipeline_objects: Option<ValueList<PipelineObject>>,
    pub pipeline_tags: Option<ValueList<PipelineTag>>,
}

Properties for the Pipeline resource.

Fields

Property Activate.

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

Property Description.

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

Property Name.

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

Property ParameterObjects.

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

Property ParameterValues.

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

Property PipelineObjects.

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

Property PipelineTags.

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