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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.ParameterObjectPropertystatic final classAn implementation forCfnPipeline.ParameterObjectProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAttributesThe attributes of the parameter object.
- 
getIdThe ID of the parameter object.
- 
builder
 
-