interface StageReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Apigatewayv2.StageReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigatewayv2#StageReference |
Java | software.amazon.awscdk.interfaces.apigatewayv2.StageReference |
Python | aws_cdk.interfaces.aws_apigatewayv2.StageReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigatewayv2 » StageReference |
A reference to a Stage resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as interfaces_aws_apigatewayv2 } from 'aws-cdk-lib/interfaces';
const stageReference: interfaces_aws_apigatewayv2.StageReference = {
stageId: 'stageId',
};
Properties
| Name | Type | Description |
|---|---|---|
| stage | string | The Id of the Stage resource. |
stageId
Type:
string
The Id of the Stage resource.

.NET
Go
Java
Python
TypeScript