aws.apigateway.get_gateway_response
Example SQL Queries
SELECT * FROMaws.apigateway.get_gateway_responseWHERE"rest_api_id" = 'VALUE'AND "response_type" = 'VALUE';Description
Gets a GatewayResponse of a specified response type on the given RestApi.
Table Definition
| Column Name | Column Data Type |
|---|---|
| response_type Required Input Column The response type of the associated GatewayResponse. | VARCHAR |
| rest_api_id Required Input Column The string identifier of the associated RestApi. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| default_response A Boolean flag to indicate whether this GatewayResponse is the default gateway response (true) or not (false). A default gateway response is one generated by API Gateway without any customization by an API developer. | BOOLEAN |
| response_parameters Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs. | MAP(VARCHAR, VARCHAR) |
| response_templates Response templates of the GatewayResponse as a string-to-string map of key-value pairs. | MAP(VARCHAR, VARCHAR) |
| status_code The HTTP status code for this GatewayResponse. | VARCHAR |