@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-06-22T23:27:58.217Z")
public interface CfnApiGatewayManagedOverridesProps
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; CfnApiGatewayManagedOverridesProps cfnApiGatewayManagedOverridesProps = CfnApiGatewayManagedOverridesProps.builder() .apiId("apiId") // the properties below are optional .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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApiGatewayManagedOverridesProps.Builder
A builder for
CfnApiGatewayManagedOverridesProps |
static class |
CfnApiGatewayManagedOverridesProps.Jsii$Proxy
An implementation for
CfnApiGatewayManagedOverridesProps |
Modifier and Type | Method and Description |
---|---|
static CfnApiGatewayManagedOverridesProps.Builder |
builder() |
java.lang.String |
getApiId()
The ID of the API for which to override the configuration of API Gateway-managed resources.
|
default java.lang.Object |
getIntegration()
Overrides the integration configuration for an API Gateway-managed integration.
|
default java.lang.Object |
getRoute()
Overrides the route configuration for an API Gateway-managed route.
|
default java.lang.Object |
getStage()
Overrides the stage configuration for an API Gateway-managed stage.
|
java.lang.String getApiId()
default java.lang.Object getIntegration()
default java.lang.Object getRoute()
default java.lang.Object getStage()
static CfnApiGatewayManagedOverridesProps.Builder builder()