aws-cdk-lib.aws_datapipeline.CfnPipeline.PipelineObjectProperty

interface PipelineObjectProperty

LanguageType name
.NETAmazon.CDK.AWS.DataPipeline.CfnPipeline.PipelineObjectProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatapipeline#CfnPipeline_PipelineObjectProperty
Javasoftware.amazon.awscdk.services.datapipeline.CfnPipeline.PipelineObjectProperty
Pythonaws_cdk.aws_datapipeline.CfnPipeline.PipelineObjectProperty
TypeScript aws-cdk-lib » aws_datapipeline » CfnPipeline » 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-lib';
const pipelineObjectProperty: datapipeline.CfnPipeline.PipelineObjectProperty = {
  fields: [{
    key: 'key',

    // the properties below are optional
    refValue: 'refValue',
    stringValue: 'stringValue',
  }],
  id: 'id',
  name: 'name',
};

Properties

NameTypeDescription
fieldsIResolvable | IResolvable | FieldProperty[]Key-value pairs that define the properties of the object.
idstringThe ID of the object.
namestringThe name of the object.

fields

Type: IResolvable | IResolvable | FieldProperty[]

Key-value pairs that define the properties of the object.


id

Type: string

The ID of the object.


name

Type: string

The name of the object.