interface ParameterConstraintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnRouteResponsePropsMixin.ParameterConstraintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnRouteResponsePropsMixin_ParameterConstraintsProperty |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnRouteResponsePropsMixin.ParameterConstraintsProperty |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnRouteResponsePropsMixin.ParameterConstraintsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » 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 { mixins as apigatewayv2_mixins } from '@aws-cdk/mixins-preview/aws-apigatewayv2';
const parameterConstraintsProperty: apigatewayv2_mixins.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