Interface StageAttributes

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:02.329Z") @Stability(Stable) public interface StageAttributes extends software.amazon.jsii.JsiiSerializable
The attributes of an imported Stage.

Example:

 IRestApi restApi;
 IStage importedStage = Stage.fromStageAttributes(this, "imported-stage", StageAttributes.builder()
         .stageName("myStageName")
         .restApi(restApi)
         .build());
 importedStage.addApiKey("MyApiKey");