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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.ParameterObjectPropertystatic final classAn implementation forCfnPipeline.ParameterObjectProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributes
The attributes of the parameter object.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnPipeline.ParameterAttributeProperty>- See Also:
-
getId
The ID of the parameter object.- See Also:
-
builder
-