选择您的 Cookie 首选项

我们使用必要 Cookie 和类似工具提供我们的网站和服务。我们使用性能 Cookie 收集匿名统计数据,以便我们可以了解客户如何使用我们的网站并进行改进。必要 Cookie 无法停用,但您可以单击“自定义”或“拒绝”来拒绝性能 Cookie。

如果您同意,AWS 和经批准的第三方还将使用 Cookie 提供有用的网站功能、记住您的首选项并显示相关内容,包括相关广告。要接受或拒绝所有非必要 Cookie,请单击“接受”或“拒绝”。要做出更详细的选择,请单击“自定义”。

Integrating Amazon CloudSearch with API Gateway - Amazon CloudSearch
此页面尚未翻译为您的语言。 请求翻译

Integrating Amazon CloudSearch with API Gateway

This chapter provides information about integrating Amazon CloudSearch with Amazon API Gateway. API Gateway lets you create and host REST APIs that make calls to other services. Some use cases for using API Gateway with Amazon CloudSearch include the following:

  • Further securing the Amazon CloudSearch search endpoint using API keys or Amazon Cognito user pools

  • Using CloudWatch to monitor and log search calls to the Amazon CloudSearch domain

  • Restricting users to a more limited subset of the Amazon CloudSearch API

  • Enforcing a rate limit on the number of requests

To learn more about the benefits of API Gateway, see the API Gateway Developer Guide.

Prerequisites

Before you integrate Amazon CloudSearch with API Gateway, you must have the following resources.

Prerequisite Description
Amazon CloudSearch Domain

For testing purposes, the domain should have some searchable data. The IMDb movies data is an excellent option.

The domain must have the following access policy:

{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::123456789012:role/my-api-gateway-role" }, "Action": [ "cloudsearch:search", "cloudsearch:suggest" ] } ] }

This policy configures the Amazon CloudSearch domain so that only API Gateway (and probably the account owner) can access it. To learn more, see Creating an Amazon CloudSearch Domain and Configuring Access for Amazon CloudSearch.

IAM Role

This role delegates permissions to API Gateway and allows it to make requests to Amazon CloudSearch. The role is referred to as my-api-gateway-role within this chapter and must have the following permissions:

{ "Version": "2012-10-17", "Statement": [{ "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:DescribeLogGroups", "logs:DescribeLogStreams", "logs:PutLogEvents", "logs:GetLogEvents", "logs:FilterLogEvents" ], "Resource": "*" }] }

The role must also have the following trust relationship:

{ "Version": "2012-10-17", "Statement": [{ "Sid": "", "Effect": "Allow", "Principal": { "Service": "apigateway.amazonaws.com" }, "Action": "sts:AssumeRole" }] }

To learn more, see Creating Roles in the IAM User Guide.

Creating and Configuring an API (Console)

The steps involved in creating an API vary depending on whether the request uses parameters, requires a request body, needs specific headers, and many other factors. The following procedure creates an API that has one function: performing searches on an Amazon CloudSearch domain. For more complete information about configuring APIs, see Creating an API in Amazon API Gateway.

To create an API (console)
  1. Sign in to the AWS Management Console, and open the API Gateway console at https://console.aws.amazon.com/apigateway.

  2. Choose Create API (or choose Get Started if this is your first time using API Gateway).

  3. Choose Build under REST API (not private).

  4. Provide a name and optional description, then choose Create API.

  5. Choose Actions, Create Method. From the dropdown menu, choose GET and confirm.

  6. For Integration type, choose AWS Service.

  7. For AWS Region, choose the Region in which your Amazon CloudSearch domain resides.

  8. For AWS Service, choose CloudSearch.

  9. For AWS Subdomain, specify the subdomain for your Amazon CloudSearch domain's search endpoint.

    For example, if your domain's search endpoint is search-my-test-asdf5asdfasdfasdfasd5asdfg.us-west-1.cloudsearch.amazonaws.com, specify search-my-test-asdf5ambgebbgmmodhhq5asdfg.

  10. For HTTP Method, choose GET.

  11. For Action Type, choose Use path override and enter /2013-01-01/search.

  12. For Execution role, specify the ARN for my-api-gateway-role, such as arn:aws:iam::123456789012:role/my-api-gateway-role.

  13. For Content Handling, choose Passthrough, use the default timeout, and then choose Save.

  14. Choose Method Request.

  15. For Request Validator, choose Validate query string parameters and headers, and then confirm.

  16. Expand URL Query String Parameters. Choose Add query string, name the string q, and confirm. Mark the query string as required.

  17. Choose Method Execution to return to the method summary.

  18. Choose Integration Request.

  19. Expand URL Query String Parameters. Choose Add query string, name the string q, provide a mapping of method.request.querystring.q, and then confirm.

Testing the API (Console)

At this point, you've created an API that has one method. Before deploying the API, you should test it.

To test the API (console)
  1. Navigate to the Method Execution page.

  2. Choose Test.

  3. Under Query Strings, enter a query string that will match some data in the Amazon CloudSearch domain. If you are using the IMDb movie data, try q=thor.

  4. Choose Test.

  5. Verify that the response body contains search results, such as the following:

    { "status": { "rid": "rcWTo8IsviEK+own", "time-ms": 1 }, "hits": { "found": 7, "start": 0, "hit": [ { "id": "tt0800369", "fields": { "rating": "7.0", "genres": [ "Action", "Adventure", "Fantasy" ], "title": "Thor", "release_date": "2011-04-21T00:00:00Z", "plot": "The powerful but arrogant god Thor is cast out of Asgard to live amongst humans in Midgard (Earth), where he soon becomes one of their finest defenders.", "rank": "135", "running_time_secs": "6900", "directors": [ "Kenneth Branagh", "Joss Whedon" ], "image_url": "http://ia.media-imdb.com/images/M/MV5BMTYxMjA5NDMzNV5BMl5BanBnXkFtZTcwOTk2Mjk3NA@@._V1_SX400_.jpg", "year": "2011", "actors": [ "Chris Hemsworth", "Anthony Hopkins", "Natalie Portman" ] } }, ... ] } }

At this point, you have a functional API. You can add methods to enable more robust search requests, deploy the API and configure rate limiting, create and require the use of API keys, add Amazon Cognito user pool authentication, and much more. For more information, see the API Gateway Developer Guide.

隐私网站条款Cookie 首选项
© 2025, Amazon Web Services, Inc. 或其附属公司。保留所有权利。