interface StageReference
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.APIGateway.StageReference |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsapigateway#StageReference |
![]() | software.amazon.awscdk.services.apigateway.StageReference |
![]() | aws_cdk.aws_apigateway.StageReference |
![]() | aws-cdk-lib » 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 apigateway } from 'aws-cdk-lib';
const stageReference: 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.