CfnPipelineMixinProps

class aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnPipelineMixinProps(*, computations=None, description=None, environment_variables=None, pipeline_name=None, tags=None, workspace_name=None)

Bases: object

Properties for CfnPipelinePropsMixin.

Parameters:
  • computations (Union[IResolvable, Sequence[Union[IResolvable, ComputeNodeProperty, Dict[str, Any]]], None]) – The list of compute nodes that form the pipeline DAG.

  • description (Optional[str]) – A description of the pipeline.

  • environment_variables (Union[IResolvable, Mapping[str, str], None]) – A map of environment variable key-value pairs.

  • pipeline_name (Optional[str]) – The name of the pipeline. Must be unique within the workspace.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

  • workspace_name (Optional[str]) – The name of the workspace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_iotsitewise as iotsitewise

cfn_pipeline_mixin_props = iotsitewise.CfnPipelineMixinProps(
    computations=[iotsitewise.CfnPipelinePropsMixin.ComputeNodeProperty(
        compute_node_name="computeNodeName",
        depends_on=["dependsOn"],
        environment_variables={
            "environment_variables_key": "environmentVariables"
        },
        task_name="taskName"
    )],
    description="description",
    environment_variables={
        "environment_variables_key": "environmentVariables"
    },
    pipeline_name="pipelineName",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    workspace_name="workspaceName"
)

Attributes

computations

The list of compute nodes that form the pipeline DAG.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html#cfn-iotsitewise-pipeline-computations

description

A description of the pipeline.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html#cfn-iotsitewise-pipeline-description

environment_variables

A map of environment variable key-value pairs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html#cfn-iotsitewise-pipeline-environmentvariables

pipeline_name

The name of the pipeline.

Must be unique within the workspace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html#cfn-iotsitewise-pipeline-pipelinename

tags

An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html#cfn-iotsitewise-pipeline-tags

workspace_name

The name of the workspace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-pipeline.html#cfn-iotsitewise-pipeline-workspacename