Interface CfnPipeline.ParameterObjectProperty

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

@Stability(Stable) public static interface CfnPipeline.ParameterObjectProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a parameter object.

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.*;
 ParameterObjectProperty parameterObjectProperty = ParameterObjectProperty.builder()
         .attributes(List.of(ParameterAttributeProperty.builder()
                 .key("key")
                 .stringValue("stringValue")
                 .build()))
         .id("id")
         .build();