interface ParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataPipeline.CfnPipelinePropsMixin.ParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatapipeline#CfnPipelinePropsMixin_ParameterValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datapipeline.CfnPipelinePropsMixin.ParameterValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_datapipeline.CfnPipelinePropsMixin.ParameterValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datapipeline » CfnPipelinePropsMixin » ParameterValueProperty |
A value or list of parameter values.
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 parameterValueProperty: datapipeline.CfnPipelinePropsMixin.ParameterValueProperty = {
id: 'id',
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The ID of the parameter value. |
| string | string | ISubnet | The field value, expressed as a String. |
id?
Type:
string
(optional)
The ID of the parameter value.
stringValue?
Type:
string | ISubnet
(optional)
The field value, expressed as a String.

.NET
Go
Java
Python
TypeScript