StageAttributes

class aws_cdk.aws_apigatewayv2.StageAttributes(*, stage_name)

Bases: object

(experimental) The attributes used to import existing Stage.

Parameters:

stage_name (str) – (experimental) The name of the stage.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_apigatewayv2 as apigatewayv2

stage_attributes = apigatewayv2.StageAttributes(
    stage_name="stageName"
)

Attributes

stage_name

(experimental) The name of the stage.

Stability:

experimental