Method: Aws::APIGateway::Types::PutIntegrationRequest#request_templates

Defined in:
lib/aws-sdk-apigateway/types.rb

#request_templatesHash<String,String>

Represents a map of Velocity templates that are applied on the request payload based on the value of the Content-Type header sent by the client. The content type value is the key in this map, and the template (as a String) is the value.

Returns:

  • (Hash<String,String>)

5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
# File 'lib/aws-sdk-apigateway/types.rb', line 5855

class PutIntegrationRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :type,
  :integration_http_method,
  :uri,
  :connection_type,
  :connection_id,
  :credentials,
  :request_parameters,
  :request_templates,
  :passthrough_behavior,
  :cache_namespace,
  :cache_key_parameters,
  :content_handling,
  :timeout_in_millis,
  :tls_config)
  SENSITIVE = []
  include Aws::Structure
end