Interface CfnApiGatewayManagedOverridesMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiGatewayManagedOverridesMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:08.151Z")
@Stability(Stable)
public interface CfnApiGatewayManagedOverridesMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApiGatewayManagedOverridesPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.*;
Object routeSettings;
Object stageVariables;
CfnApiGatewayManagedOverridesMixinProps cfnApiGatewayManagedOverridesMixinProps = CfnApiGatewayManagedOverridesMixinProps.builder()
.apiId("apiId")
.integration(IntegrationOverridesProperty.builder()
.description("description")
.integrationMethod("integrationMethod")
.payloadFormatVersion("payloadFormatVersion")
.timeoutInMillis(123)
.build())
.route(RouteOverridesProperty.builder()
.authorizationScopes(List.of("authorizationScopes"))
.authorizationType("authorizationType")
.authorizerId("authorizerId")
.operationName("operationName")
.target("target")
.build())
.stage(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApiGatewayManagedOverridesMixinPropsstatic final classAn implementation forCfnApiGatewayManagedOverridesMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetApiId()The ID of the API for which to override the configuration of API Gateway-managed resources.default ObjectOverrides the integration configuration for an API Gateway-managed integration.default ObjectgetRoute()Overrides the route configuration for an API Gateway-managed route.default ObjectgetStage()Overrides the stage configuration for an API Gateway-managed stage.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The ID of the API for which to override the configuration of API Gateway-managed resources.- See Also:
-
getIntegration
Overrides the integration configuration for an API Gateway-managed integration.Returns union: either
IResolvableorCfnApiGatewayManagedOverridesPropsMixin.IntegrationOverridesProperty- See Also:
-
getRoute
Overrides the route configuration for an API Gateway-managed route.Returns union: either
IResolvableorCfnApiGatewayManagedOverridesPropsMixin.RouteOverridesProperty- See Also:
-
getStage
Overrides the stage configuration for an API Gateway-managed stage.Returns union: either
IResolvableorCfnApiGatewayManagedOverridesPropsMixin.StageOverridesProperty- See Also:
-
builder
-