class Aws::ApiGatewayV2::Types::UpdateIntegrationResponseRequest

@note When making an API call, you may pass UpdateIntegrationResponseRequest

data as a hash:

    {
      api_id: "__string", # required
      content_handling_strategy: "CONVERT_TO_BINARY", # accepts CONVERT_TO_BINARY, CONVERT_TO_TEXT
      integration_id: "__string", # required
      integration_response_id: "__string", # required
      integration_response_key: "SelectionKey",
      response_parameters: {
        "__string" => "StringWithLengthBetween1And512",
      },
      response_templates: {
        "__string" => "StringWithLengthBetween0And32K",
      },
      template_selection_expression: "SelectionExpression",
    }

@!attribute [rw] api_id

@return [String]

@!attribute [rw] content_handling_strategy

Specifies how to handle response payload content type conversions.
Supported only for WebSocket APIs.
@return [String]

@!attribute [rw] integration_id

@return [String]

@!attribute [rw] integration_response_id

@return [String]

@!attribute [rw] integration_response_key

After evaluating a selection expression, the result is compared
against one or more selection keys to find a matching key. See
[Selection Expressions][1] for a list of expressions and each
expression's associated selection key type.

[1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions
@return [String]

@!attribute [rw] response_parameters

For WebSocket APIs, a key-value map specifying request parameters
that are passed from the method request to the backend. The key is
an integration request parameter name and the associated value is a
method request parameter value or static value that must be enclosed
within single quotes and pre-encoded as required by the backend. The
method request parameter value must match the pattern of
method.request.*\\\{location\\}*.*\\\{name\\}* , where
*\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
must be a valid and unique method request parameter name.

For HTTP API integrations with a specified integrationSubtype,
request parameters are a key-value map specifying parameters that
are passed to AWS\_PROXY integrations. You can provide static
values, or map request data, stage variables, or context variables
that are evaluated at runtime. To learn more, see [Working with AWS
service integrations for HTTP APIs][1].

For HTTP API integrations without a specified integrationSubtype
request parameters are a key-value map specifying how to transform
HTTP requests before sending them to the backend. The key should
follow the pattern
<action>\:<header\|querystring\|path>.<location>
where action can be append, overwrite or remove. For values, you can
provide static values, or map request data, stage variables, or
context variables that are evaluated at runtime. To learn more, see
[Transforming API requests and responses][2].

[1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services.html
[2]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html
@return [Hash<String,String>]

@!attribute [rw] response_templates

A mapping of identifier keys to templates. The value is an actual
template script. The key is typically a SelectionKey which is chosen
based on evaluating a selection expression.
@return [Hash<String,String>]

@!attribute [rw] template_selection_expression

An expression used to extract information at runtime. See [Selection
Expressions][1] for more information.

[1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions
@return [String]

Constants

SENSITIVE