StageAttributes
- class aws_cdk.aws_apigatewayv2.StageAttributes(*, stage_name)
Bases:
object
The attributes used to import existing Stage.
- Parameters:
stage_name (
str
) – The name of the stage.- 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 stage_attributes = apigatewayv2.StageAttributes( stage_name="stageName" )
Attributes
- stage_name
The name of the stage.