Interface HttpStageAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,StageAttributes
- All Known Implementing Classes:
HttpStageAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:06.569Z")
@Stability(Stable)
public interface HttpStageAttributes
extends software.amazon.jsii.JsiiSerializable, StageAttributes
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpStageAttributesstatic final classAn implementation forHttpStageAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpStageAttributes.Builderbuilder()getApi()The API to which this stage is associated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.apigatewayv2.StageAttributes
getStageName
-
Method Details
-
getApi
The API to which this stage is associated. -
builder
- Returns:
- a
HttpStageAttributes.BuilderofHttpStageAttributes
-