interface PipelineObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataPipeline.CfnPipelinePropsMixin.PipelineObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatapipeline#CfnPipelinePropsMixin_PipelineObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datapipeline.CfnPipelinePropsMixin.PipelineObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_datapipeline.CfnPipelinePropsMixin.PipelineObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datapipeline » CfnPipelinePropsMixin » PipelineObjectProperty |
PipelineObject is property of the AWS::DataPipeline::Pipeline resource that contains information about a pipeline object.
This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
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 pipelineObjectProperty: datapipeline.CfnPipelinePropsMixin.PipelineObjectProperty = {
fields: [{
key: 'key',
refValue: 'refValue',
stringValue: 'stringValue',
}],
id: 'id',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| fields? | IResolvable | (IResolvable | Field)[] | Key-value pairs that define the properties of the object. |
| id? | string | The ID of the object. |
| name? | string | The name of the object. |
fields?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
Key-value pairs that define the properties of the object.
id?
Type:
string
(optional)
The ID of the object.
name?
Type:
string
(optional)
The name of the object.

.NET
Go
Java
Python
TypeScript