Interface HttpStageProps

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

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-01-25T00:20:50.191Z") @Stability(Stable) public interface HttpStageProps extends software.amazon.jsii.JsiiSerializable, HttpStageOptions
Properties to initialize an instance of HttpStage.

Example:

 HttpApi api;
 HttpStage.Builder.create(this, "Stage")
         .httpApi(api)
         .stageName("beta")
         .description("My Stage")
         .build();