interface ParameterAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataPipeline.CfnPipelinePropsMixin.ParameterAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatapipeline#CfnPipelinePropsMixin_ParameterAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datapipeline.CfnPipelinePropsMixin.ParameterAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_datapipeline.CfnPipelinePropsMixin.ParameterAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datapipeline » CfnPipelinePropsMixin » 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 { aws_datapipeline as datapipeline } from '@aws-cdk/cfn-property-mixins';
const parameterAttributeProperty: datapipeline.CfnPipelinePropsMixin.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
(optional)
The field identifier.
stringValue?
Type:
string
(optional)
The field value, expressed as a String.

.NET
Go
Java
Python
TypeScript