interface GatewayResponseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.GatewayResponseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#GatewayResponseReference |
Java | software.amazon.awscdk.interfaces.apigateway.GatewayResponseReference |
Python | aws_cdk.interfaces.aws_apigateway.GatewayResponseReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » GatewayResponseReference |
A reference to a GatewayResponse 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_aws_apigateway } from 'aws-cdk-lib/interfaces';
const gatewayResponseReference: interfaces_aws_apigateway.GatewayResponseReference = {
gatewayResponseId: 'gatewayResponseId',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The Id of the GatewayResponse resource. |
gatewayResponseId
Type:
string
The Id of the GatewayResponse resource.

.NET
Go
Java
Python
TypeScript