Class CfnApiGatewayManagedOverridesPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnApiGatewayManagedOverridesPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:08.152Z")
@Stability(Stable)
public class CfnApiGatewayManagedOverridesPropsMixin
extends Mixin
implements software.constructs.IMixin
The
AWS::ApiGatewayV2::ApiGatewayManagedOverrides resource overrides the default properties of API Gateway-managed resources that are implicitly configured for you when you use quick create.
When you create an API by using quick create, an AWS::ApiGatewayV2::Route , AWS::ApiGatewayV2::Integration , and AWS::ApiGatewayV2::Stage are created for you and associated with your AWS::ApiGatewayV2::Api . The AWS::ApiGatewayV2::ApiGatewayManagedOverrides resource enables you to set, or override the properties of these implicit resources. Supported only for HTTP APIs.
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.*;
import software.amazon.awscdk.*;
IMergeStrategy mergeStrategy;
Object routeSettings;
Object stageVariables;
CfnApiGatewayManagedOverridesPropsMixin cfnApiGatewayManagedOverridesPropsMixin = CfnApiGatewayManagedOverridesPropsMixin.Builder.create(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())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceTheAccessLogSettingsproperty overrides the access log settings for an API Gateway-managed stage.static final classA fluent builder forCfnApiGatewayManagedOverridesPropsMixin.static interfaceTheIntegrationOverridesproperty overrides the integration settings for an API Gateway-managed integration.static interfaceTheRouteOverridesproperty overrides the route configuration for an API Gateway-managed route.static interfaceTheRouteSettingsproperty overrides the route settings for an API Gateway-managed route.static interfaceTheStageOverridesproperty overrides the stage configuration for an API Gateway-managed stage.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::ApiGatewayV2::ApiGatewayManagedOverrides.CfnApiGatewayManagedOverridesPropsMixin(CfnApiGatewayManagedOverridesMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::ApiGatewayV2::ApiGatewayManagedOverrides.protectedCfnApiGatewayManagedOverridesPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnApiGatewayManagedOverridesPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnApiGatewayManagedOverridesMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnApiGatewayManagedOverridesPropsMixin
protected CfnApiGatewayManagedOverridesPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnApiGatewayManagedOverridesPropsMixin
protected CfnApiGatewayManagedOverridesPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnApiGatewayManagedOverridesPropsMixin
@Stability(Stable) public CfnApiGatewayManagedOverridesPropsMixin(@NotNull CfnApiGatewayManagedOverridesMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::ApiGatewayV2::ApiGatewayManagedOverrides.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnApiGatewayManagedOverridesPropsMixin
@Stability(Stable) public CfnApiGatewayManagedOverridesPropsMixin(@NotNull CfnApiGatewayManagedOverridesMixinProps props) Create a mixin to apply properties toAWS::ApiGatewayV2::ApiGatewayManagedOverrides.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-