interface ParameterObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataPipeline.CfnPipelinePropsMixin.ParameterObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatapipeline#CfnPipelinePropsMixin_ParameterObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datapipeline.CfnPipelinePropsMixin.ParameterObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_datapipeline.CfnPipelinePropsMixin.ParameterObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datapipeline » CfnPipelinePropsMixin » 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/cfn-property-mixins';
const parameterObjectProperty: datapipeline.CfnPipelinePropsMixin.ParameterObjectProperty = {
attributes: [{
key: 'key',
stringValue: 'stringValue',
}],
id: 'id',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | IResolvable | (IResolvable | Parameter)[] | The attributes of the parameter object. |
| id? | string | The ID of the parameter object. |
attributes?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
The attributes of the parameter object.
id?
Type:
string
(optional)
The ID of the parameter object.

.NET
Go
Java
Python
TypeScript