Interface HttpStageAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, StageAttributes
All Known Implementing Classes:
HttpStageAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:43.293Z") @Stability(Experimental) public interface HttpStageAttributes extends software.amazon.jsii.JsiiSerializable, StageAttributes
(experimental) The attributes used to import existing HttpStage.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apigatewayv2.*;
 HttpApi httpApi;
 HttpStageAttributes httpStageAttributes = HttpStageAttributes.builder()
         .api(httpApi)
         .stageName("stageName")
         .build();