interface RouteResponseReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Apigatewayv2.RouteResponseReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigatewayv2#RouteResponseReference | 
|  Java | software.amazon.awscdk.services.apigatewayv2.RouteResponseReference | 
|  Python | aws_cdk.aws_apigatewayv2.RouteResponseReference | 
|  TypeScript | aws-cdk-lib»aws_apigatewayv2»RouteResponseReference | 
A reference to a RouteResponse 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 apigatewayv2 } from 'aws-cdk-lib';
const routeResponseReference: apigatewayv2.RouteResponseReference = {
  apiId: 'apiId',
  routeId: 'routeId',
  routeResponseId: 'routeResponseId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| api | string | The ApiId of the RouteResponse resource. | 
| route | string | The RouteId of the RouteResponse resource. | 
| route | string | The RouteResponseId of the RouteResponse resource. | 
apiId
Type:
string
The ApiId of the RouteResponse resource.
routeId
Type:
string
The RouteId of the RouteResponse resource.
routeResponseId
Type:
string
The RouteResponseId of the RouteResponse resource.
