Interface CfnApiGatewayManagedOverridesPropsMixin.RouteOverridesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApiGatewayManagedOverridesPropsMixin.RouteOverridesProperty.Jsii$Proxy
Enclosing class:
CfnApiGatewayManagedOverridesPropsMixin

@Stability(Stable) public static interface CfnApiGatewayManagedOverridesPropsMixin.RouteOverridesProperty extends software.amazon.jsii.JsiiSerializable
The RouteOverrides property overrides the route configuration for an API Gateway-managed route.

If you remove this property, API Gateway restores the default values.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.*;
 RouteOverridesProperty routeOverridesProperty = RouteOverridesProperty.builder()
         .authorizationScopes(List.of("authorizationScopes"))
         .authorizationType("authorizationType")
         .authorizerId("authorizerId")
         .operationName("operationName")
         .target("target")
         .build();
 

See Also: