Computer Science, asked by ankita2me, 1 month ago

Which statement best describes the role of the integration request in an API method in Amazon API gateway?

Answers

Answered by shivampateljsr
5

Answer:

Basic tasks of an API integration request

PDF

Kindle

RSS

An integration request is an HTTP request that API Gateway submits to the backend, passing along the client-submitted request data, and transforming the data, if necessary. The HTTP method (or verb) and URI of the integration request are dictated by the backend (that is, the integration endpoint). They can be the same as or different from the method request's HTTP method and URI, respectively.

For example, when a Lambda function returns a file that is fetched from Amazon S3, you can expose this operation intuitively as a GET method request to the client even though the corresponding integration request requires that a POST request be used to invoke the Lambda function. For an HTTP endpoint, it is likely that the method request and the corresponding integration request both use the same HTTP verb. However, this is not required. You can integrate the following method request:

Answered by simonepot
81

Answer:

Explanation:

specificies the backend target the method will call

Similar questions