Interface HttpStageProps

All Superinterfaces:
HttpStageOptions, software.amazon.jsii.JsiiSerializable, StageOptions
All Known Implementing Classes:
HttpStageProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-05-20T23:52:49.606Z") @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();