Interface HttpStageProps
- All Superinterfaces:
HttpStageOptions,software.amazon.jsii.JsiiSerializable,StageOptions
- All Known Implementing Classes:
HttpStageProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:06.570Z")
@Stability(Stable)
public interface HttpStageProps
extends software.amazon.jsii.JsiiSerializable, HttpStageOptions
Properties to initialize an instance of
HttpStage.
Example:
import software.amazon.awscdk.services.logs.*;
HttpApi api;
LogGroup logGroup;
HttpStage stage = HttpStage.Builder.create(this, "Stage")
.httpApi(api)
.accessLogSettings(Map.of(
"destination", new LogGroupLogDestination(logGroup)))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpStagePropsstatic final classAn implementation forHttpStageProps -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpStageProps.Builderbuilder()The HTTP API to which this stage is associated.Methods inherited from interface software.amazon.awscdk.services.apigatewayv2.HttpStageOptions
getStageNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.apigatewayv2.StageOptions
getAccessLogSettings, getAutoDeploy, getDescription, getDetailedMetricsEnabled, getDomainMapping, getThrottle
-
Method Details
-
getHttpApi
The HTTP API to which this stage is associated. -
builder
- Returns:
- a
HttpStageProps.BuilderofHttpStageProps
-