Interface HttpStageProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:25.065Z") @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")
         .build();