interface ParameterConstraintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGatewayV2.CfnRouteResponsePropsMixin.ParameterConstraintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigatewayv2#CfnRouteResponsePropsMixin_ParameterConstraintsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnRouteResponsePropsMixin.ParameterConstraintsProperty |
Python | aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnRouteResponsePropsMixin.ParameterConstraintsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigatewayv2 » CfnRouteResponsePropsMixin » ParameterConstraintsProperty |
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 { aws_apigatewayv2 as apigatewayv2 } from '@aws-cdk/cfn-property-mixins';
const parameterConstraintsProperty: apigatewayv2.CfnRouteResponsePropsMixin.ParameterConstraintsProperty = {
required: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| required? | boolean | IResolvable | Specifies whether the parameter is required. |
required?
Type:
boolean | IResolvable
(optional)
Specifies whether the parameter is required.

.NET
Go
Java
Python
TypeScript