Interface CfnPipeline.ComputeNodeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.ComputeNodeProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.ComputeNodeProperty
extends software.amazon.jsii.JsiiSerializable
A single compute node in a pipeline DAG.
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.iotsitewise.*;
ComputeNodeProperty computeNodeProperty = ComputeNodeProperty.builder()
.computeNodeName("computeNodeName")
.taskName("taskName")
// the properties below are optional
.dependsOn(List.of("dependsOn"))
.environmentVariables(Map.of(
"environmentVariablesKey", "environmentVariables"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.ComputeNodePropertystatic final classAn implementation forCfnPipeline.ComputeNodeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The unique name for this compute node within the pipeline.A list of compute node names that must complete successfully before this node can start.default ObjectA map of environment variable key-value pairs.The name of the task to execute for this compute node.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComputeNodeName
The unique name for this compute node within the pipeline.- See Also:
-
getTaskName
The name of the task to execute for this compute node.- See Also:
-
getDependsOn
A list of compute node names that must complete successfully before this node can start.- See Also:
-
getEnvironmentVariables
A map of environment variable key-value pairs.Returns union: either
IResolvableor Mapinvalid input: '<'String,String>- See Also:
-
builder
-