Interface HttpStageAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,StageAttributes
- All Known Implementing Classes:
HttpStageAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:13.588Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHttpStageAttributes
static final class
An implementation forHttpStageAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic HttpStageAttributes.Builder
builder()
getApi()
The API to which this stage is associated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods 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.Builder
ofHttpStageAttributes
-