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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHttpStageProps
static final class
An implementation forHttpStageProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic HttpStageProps.Builder
builder()
The HTTP API to which this stage is associated.Methods inherited from interface software.amazon.awscdk.services.apigatewayv2.HttpStageOptions
getStageName
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.apigatewayv2.StageOptions
getAutoDeploy, getDescription, getDomainMapping, getThrottle
-
Method Details
-
getHttpApi
The HTTP API to which this stage is associated. -
builder
- Returns:
- a
HttpStageProps.Builder
ofHttpStageProps
-