interface ComputeNodeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnPipeline.ComputeNodeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnPipeline_ComputeNodeProperty |
Java | software.amazon.awscdk.services.iotsitewise.CfnPipeline.ComputeNodeProperty |
Python | aws_cdk.aws_iotsitewise.CfnPipeline.ComputeNodeProperty |
TypeScript | aws-cdk-lib » aws_iotsitewise » CfnPipeline » ComputeNodeProperty |
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 { aws_iotsitewise as iotsitewise } from 'aws-cdk-lib';
const computeNodeProperty: iotsitewise.CfnPipeline.ComputeNodeProperty = {
computeNodeName: 'computeNodeName',
taskName: 'taskName',
// the properties below are optional
dependsOn: ['dependsOn'],
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string | The unique name for this compute node within the pipeline. |
| task | string | The name of the task to execute for this compute node. |
| depends | string[] | A list of compute node names that must complete successfully before this node can start. |
| environment | IResolvable | { [string]: string } | A map of environment variable key-value pairs. |
computeNodeName
Type:
string
The unique name for this compute node within the pipeline.
taskName
Type:
string
The name of the task to execute for this compute node.
dependsOn?
Type:
string[]
(optional)
A list of compute node names that must complete successfully before this node can start.
environmentVariables?
Type:
IResolvable | { [string]: string }
(optional)
A map of environment variable key-value pairs.

.NET
Go
Java
Python
TypeScript