Interface HttpStageProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-06T14:43:13.589Z") @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();