Interface CfnStage.RouteSettingsProperty

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

@Stability(Stable) public static interface CfnStage.RouteSettingsProperty extends software.amazon.jsii.JsiiSerializable
Represents a collection of route settings.

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.*;
 RouteSettingsProperty routeSettingsProperty = RouteSettingsProperty.builder()
         .dataTraceEnabled(false)
         .detailedMetricsEnabled(false)
         .loggingLevel("loggingLevel")
         .throttlingBurstLimit(123)
         .throttlingRateLimit(123)
         .build();
 

See Also: