package awsdatapipeline // 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 "github.com/aws/aws-cdk-go/awscdk" // // parameterValueProperty := &ParameterValueProperty{ // Id: jsii.String("id"), // StringValue: jsii.String("stringValue"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalue.html // type CfnPipeline_ParameterValueProperty struct { // The ID of the parameter value. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalue.html#cfn-datapipeline-pipeline-parametervalue-id // Id *string `field:"required" json:"id" yaml:"id"` // The field value, expressed as a String. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalue.html#cfn-datapipeline-pipeline-parametervalue-stringvalue // StringValue *string `field:"required" json:"stringValue" yaml:"stringValue"` }