Interface CfnPipeline.PipelineObjectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.PipelineObjectProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.PipelineObjectProperty extends software.amazon.jsii.JsiiSerializable
PipelineObject is property of the AWS::DataPipeline::Pipeline resource that contains information about a pipeline object.

This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.datapipeline.*;
 PipelineObjectProperty pipelineObjectProperty = PipelineObjectProperty.builder()
         .fields(List.of(FieldProperty.builder()
                 .key("key")
                 // the properties below are optional
                 .refValue("refValue")
                 .stringValue("stringValue")
                 .build()))
         .id("id")
         .name("name")
         .build();
 

See Also: