HttpStageAttributes
- class aws_cdk.aws_apigatewayv2.HttpStageAttributes(*, stage_name, api)
Bases:
StageAttributes
The attributes used to import existing HttpStage.
- Parameters:
stage_name (
str
) – The name of the stage.api (
IHttpApi
) – The API to which this stage is associated.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_apigatewayv2 as apigatewayv2 # http_api: apigatewayv2.HttpApi http_stage_attributes = apigatewayv2.HttpStageAttributes( api=http_api, stage_name="stageName" )
Attributes
- api
The API to which this stage is associated.
- stage_name
The name of the stage.