interface StageReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.StageReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#StageReference |
Java | software.amazon.awscdk.interfaces.apigateway.StageReference |
Python | aws_cdk.interfaces.aws_apigateway.StageReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » 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_apigateway as interfaces_apigateway } from 'aws-cdk-lib/interfaces';
const stageReference: interfaces_apigateway.StageReference = {
restApiId: 'restApiId',
stageName: 'stageName',
};
Properties
| Name | Type | Description |
|---|---|---|
| rest | string | The RestApiId of the Stage resource. |
| stage | string | The StageName of the Stage resource. |
restApiId
Type:
string
The RestApiId of the Stage resource.
stageName
Type:
string
The StageName of the Stage resource.

.NET
Go
Java
Python
TypeScript