interface ParameterAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataPipeline.CfnPipeline.ParameterAttributeProperty |
Java | software.amazon.awscdk.services.datapipeline.CfnPipeline.ParameterAttributeProperty |
Python | aws_cdk.aws_datapipeline.CfnPipeline.ParameterAttributeProperty |
TypeScript | @aws-cdk/aws-datapipeline » CfnPipeline » ParameterAttributeProperty |
Attribute is a property of ParameterObject that defines the attributes of a parameter object as key-value pairs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as datapipeline from '@aws-cdk/aws-datapipeline';
const parameterAttributeProperty: datapipeline.CfnPipeline.ParameterAttributeProperty = {
key: 'key',
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The field identifier. |
| string | string | The field value, expressed as a String. |
key
Type:
string
The field identifier.
stringValue
Type:
string
The field value, expressed as a String.

.NET
Java
Python
TypeScript