Method: Aws::APIGateway::Types::GatewayResponse#response_type
- Defined in:
- lib/aws-sdk-apigateway/types.rb
permalink #response_type ⇒ String
The response type of the associated GatewayResponse. Valid values are * ACCESS_DENIED
-
API_CONFIGURATION_ERROR
-
AUTHORIZER_FAILURE
-
AUTHORIZER_CONFIGURATION_ERROR
-
BAD_REQUEST_PARAMETERS
-
BAD_REQUEST_BODY
-
DEFAULT_4XX
-
DEFAULT_5XX
-
EXPIRED_TOKEN
-
INVALID_SIGNATURE
-
INTEGRATION_FAILURE
-
INTEGRATION_TIMEOUT
-
INVALID_API_KEY
-
MISSING_AUTHENTICATION_TOKEN
-
QUOTA_EXCEEDED
-
REQUEST_TOO_LARGE
-
RESOURCE_NOT_FOUND
-
THROTTLED
-
UNAUTHORIZED
-
UNSUPPORTED_MEDIA_TYPE
2927 2928 2929 2930 2931 2932 2933 2934 2935 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2927 class GatewayResponse < Struct.new( :response_type, :status_code, :response_parameters, :response_templates, :default_response) SENSITIVE = [] include Aws::Structure end |