interface CfnPipelineProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnPipelineProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnPipelineProps |
Java | software.amazon.awscdk.services.iotsitewise.CfnPipelineProps |
Python | aws_cdk.aws_iotsitewise.CfnPipelineProps |
TypeScript | aws-cdk-lib » aws_iotsitewise » CfnPipelineProps |
Properties for defining a CfnPipeline.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html
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 cfnPipelineProps: iotsitewise.CfnPipelineProps = {
computations: [{
computeNodeName: 'computeNodeName',
taskName: 'taskName',
// the properties below are optional
dependsOn: ['dependsOn'],
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
}],
pipelineName: 'pipelineName',
workspaceName: 'workspaceName',
// the properties below are optional
description: 'description',
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| computations | IResolvable | (IResolvable | Compute)[] | The list of compute nodes that form the pipeline DAG. |
| pipeline | string | The name of the pipeline. |
| workspace | string | The name of the workspace. |
| description? | string | A description of the pipeline. |
| environment | IResolvable | { [string]: string } | A map of environment variable key-value pairs. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
computations
Type:
IResolvable | (IResolvable | Compute)[]
The list of compute nodes that form the pipeline DAG.
pipelineName
Type:
string
The name of the pipeline.
Must be unique within the workspace.
workspaceName
Type:
string
The name of the workspace.
description?
Type:
string
(optional)
A description of the pipeline.
environmentVariables?
Type:
IResolvable | { [string]: string }
(optional)
A map of environment variable key-value pairs.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript