Interface CfnApiGatewayManagedOverrides.StageOverridesProperty

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

@Stability(Stable) public static interface CfnApiGatewayManagedOverrides.StageOverridesProperty extends software.amazon.jsii.JsiiSerializable
The StageOverrides property overrides the stage configuration for an API Gateway-managed stage.

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.*;
 Object routeSettings;
 Object stageVariables;
 StageOverridesProperty stageOverridesProperty = StageOverridesProperty.builder()
         .accessLogSettings(AccessLogSettingsProperty.builder()
                 .destinationArn("destinationArn")
                 .format("format")
                 .build())
         .autoDeploy(false)
         .defaultRouteSettings(RouteSettingsProperty.builder()
                 .dataTraceEnabled(false)
                 .detailedMetricsEnabled(false)
                 .loggingLevel("loggingLevel")
                 .throttlingBurstLimit(123)
                 .throttlingRateLimit(123)
                 .build())
         .description("description")
         .routeSettings(routeSettings)
         .stageVariables(stageVariables)
         .build();
 

See Also: