StageReference

class aws_cdk.aws_apigatewayv2.StageReference(*, stage_id)

Bases: object

A reference to a Stage resource.

Parameters:

stage_id (str) – The Id of the Stage resource.

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_reference = apigatewayv2.StageReference(
    stage_id="stageId"
)

Attributes

stage_id

The Id of the Stage resource.