interface ComputeNodeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnPipelinePropsMixin.ComputeNodeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnPipelinePropsMixin_ComputeNodeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnPipelinePropsMixin.ComputeNodeProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnPipelinePropsMixin.ComputeNodeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » CfnPipelinePropsMixin » 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/cfn-property-mixins';
const computeNodeProperty: iotsitewise.CfnPipelinePropsMixin.ComputeNodeProperty = {
computeNodeName: 'computeNodeName',
dependsOn: ['dependsOn'],
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
taskName: 'taskName',
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string | The unique name for this compute node within the pipeline. |
| 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. |
| task | string | The name of the task to execute for this compute node. |
computeNodeName?
Type:
string
(optional)
The unique name for this compute node within the pipeline.
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.
taskName?
Type:
string
(optional)
The name of the task to execute for this compute node.

.NET
Go
Java
Python
TypeScript