interface CfnPipelineMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataPipeline.CfnPipelineMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatapipeline#CfnPipelineMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.datapipeline.CfnPipelineMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_datapipeline.CfnPipelineMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datapipeline » CfnPipelineMixinProps |
Properties for CfnPipelinePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datapipeline as datapipeline } from '@aws-cdk/cfn-property-mixins';
const cfnPipelineMixinProps: datapipeline.CfnPipelineMixinProps = {
activate: false,
description: 'description',
name: 'name',
parameterObjects: [{
attributes: [{
key: 'key',
stringValue: 'stringValue',
}],
id: 'id',
}],
parameterValues: [{
id: 'id',
stringValue: 'stringValue',
}],
pipelineObjects: [{
fields: [{
key: 'key',
refValue: 'refValue',
stringValue: 'stringValue',
}],
id: 'id',
name: 'name',
}],
pipelineTags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| activate? | boolean | IResolvable | Indicates whether to validate and start the pipeline or stop an active pipeline. |
| description? | string | A description of the pipeline. |
| name? | string | The name of the pipeline. |
| parameter | IResolvable | (IResolvable | Parameter)[] | The parameter objects used with the pipeline. |
| parameter | IResolvable | (IResolvable | Parameter)[] | The parameter values used with the pipeline. |
| pipeline | IResolvable | (IResolvable | Pipeline)[] | The objects that define the pipeline. |
| pipeline | Pipeline[] | A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions. |
activate?
Type:
boolean | IResolvable
(optional)
Indicates whether to validate and start the pipeline or stop an active pipeline.
By default, the value is set to true .
description?
Type:
string
(optional)
A description of the pipeline.
name?
Type:
string
(optional)
The name of the pipeline.
parameterObjects?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
The parameter objects used with the pipeline.
parameterValues?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
The parameter values used with the pipeline.
pipelineObjects?
Type:
IResolvable | (IResolvable | Pipeline)[]
(optional)
The objects that define the pipeline.
These objects overwrite the existing pipeline definition. Not all objects, fields, and values can be updated. For information about restrictions, see Editing Your Pipeline in the AWS Data Pipeline Developer Guide .
pipelineTags?
Type:
Pipeline[]
(optional)
A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions.
For more information, see Controlling Access to Pipelines and Resources in the AWS Data Pipeline Developer Guide .

.NET
Go
Java
Python
TypeScript