interface CfnPipelineMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnPipelineMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnPipelineMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnPipelineMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnPipelineMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » CfnPipelineMixinProps |
Properties for CfnPipelinePropsMixin.
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/cfn-property-mixins';
const cfnPipelineMixinProps: iotsitewise.CfnPipelineMixinProps = {
computations: [{
computeNodeName: 'computeNodeName',
dependsOn: ['dependsOn'],
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
taskName: 'taskName',
}],
description: 'description',
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
pipelineName: 'pipelineName',
tags: [{
key: 'key',
value: 'value',
}],
workspaceName: 'workspaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| computations? | IResolvable | (IResolvable | Compute)[] | The list of compute nodes that form the pipeline DAG. |
| description? | string | A description of the pipeline. |
| environment | IResolvable | { [string]: string } | A map of environment variable key-value pairs. |
| pipeline | string | The name of the pipeline. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| workspace | string | The name of the workspace. |
computations?
Type:
IResolvable | (IResolvable | Compute)[]
(optional)
The list of compute nodes that form the pipeline DAG.
description?
Type:
string
(optional)
A description of the pipeline.
environmentVariables?
Type:
IResolvable | { [string]: string }
(optional)
A map of environment variable key-value pairs.
pipelineName?
Type:
string
(optional)
The name of the pipeline.
Must be unique within the workspace.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
workspaceName?
Type:
string
(optional)
The name of the workspace.

.NET
Go
Java
Python
TypeScript