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();