@Stability(value=Stable)
public static interface CfnPipeline.PipelineObjectProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipeline.PipelineObjectProperty.Builder
A builder for
CfnPipeline.PipelineObjectProperty |
static class |
CfnPipeline.PipelineObjectProperty.Jsii$Proxy
An implementation for
CfnPipeline.PipelineObjectProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipeline.PipelineObjectProperty.Builder |
builder() |
Object |
getFields()
Key-value pairs that define the properties of the object.
|
String |
getId()
The ID of the object.
|
String |
getName()
The name of the object.
|
@Stability(value=Stable) @NotNull Object getFields()
@Stability(value=Stable) @NotNull String getId()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) static CfnPipeline.PipelineObjectProperty.Builder builder()
Copyright © 2022. All rights reserved.