Interface CfnPipeline.FieldProperty

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

@Stability(Stable) public static interface CfnPipeline.FieldProperty extends software.amazon.jsii.JsiiSerializable
A key-value pair that describes a property of a PipelineObject .

The value is specified as either a string value ( StringValue ) or a reference to another object ( RefValue ) but not as both. To view fields for a data pipeline object, see Pipeline Object Reference in the AWS Data Pipeline Developer Guide .

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.*;
 FieldProperty fieldProperty = FieldProperty.builder()
         .key("key")
         // the properties below are optional
         .refValue("refValue")
         .stringValue("stringValue")
         .build();
 

See Also: