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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.PipelineObjectPropertystatic final classAn implementation forCfnPipeline.PipelineObjectProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFields
Key-value pairs that define the properties of the object. -
getId
The ID of the object. -
getName
The name of the object. -
builder
-