interface ParameterObjectProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DataPipeline.CfnPipeline.ParameterObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatapipeline#CfnPipeline_ParameterObjectProperty |
Java | software.amazon.awscdk.services.datapipeline.CfnPipeline.ParameterObjectProperty |
Python | aws_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
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
[]
The attributes of the parameter object.
id
Type:
string
The ID of the parameter object.