aws-cdk-lib.aws_datapipeline.CfnPipeline.ParameterObjectProperty

interface ParameterObjectProperty

LanguageType name
.NETAmazon.CDK.AWS.DataPipeline.CfnPipeline.ParameterObjectProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatapipeline#CfnPipeline_ParameterObjectProperty
Javasoftware.amazon.awscdk.services.datapipeline.CfnPipeline.ParameterObjectProperty
Pythonaws_cdk.aws_datapipeline.CfnPipeline.ParameterObjectProperty
TypeScript aws-cdk-lib » aws_datapipeline » CfnPipeline » ParameterObjectProperty

Contains information about a parameter object.

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 parameterObjectProperty: datapipeline.CfnPipeline.ParameterObjectProperty = {
  attributes: [{
    key: 'key',
    stringValue: 'stringValue',
  }],
  id: 'id',
};

Properties

NameTypeDescription
attributesIResolvable | IResolvable | ParameterAttributeProperty[]The attributes of the parameter object.
idstringThe ID of the parameter object.

attributes

Type: IResolvable | IResolvable | ParameterAttributeProperty[]

The attributes of the parameter object.


id

Type: string

The ID of the parameter object.