Interface CfnApiGatewayManagedOverrides.RouteOverridesProperty

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

@Stability(Stable) public static interface CfnApiGatewayManagedOverrides.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.services.apigatewayv2.*;
 RouteOverridesProperty routeOverridesProperty = RouteOverridesProperty.builder()
         .authorizationScopes(List.of("authorizationScopes"))
         .authorizationType("authorizationType")
         .authorizerId("authorizerId")
         .operationName("operationName")
         .target("target")
         .build();
 

See Also: