package awsapigatewayv2 // Specifies whether the parameter is required. // // 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" // // parameterConstraintsProperty := &ParameterConstraintsProperty{ // Required: jsii.Boolean(false), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routeresponse-parameterconstraints.html // type CfnRouteResponse_ParameterConstraintsProperty struct { // Specifies whether the parameter is required. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routeresponse-parameterconstraints.html#cfn-apigatewayv2-routeresponse-parameterconstraints-required // Required interface{} `field:"required" json:"required" yaml:"required"` }