boto3で匿名アクセス許可されたCloudSearch検索ドメインにアクセスする
import boto3
from botocore import UNSIGNED
from botocore.client import Config
cloudsearchdomain = boto3.client(
'cloudsearchdomain',
endpoint_url='https://search-XXXXXXXXXXX-XXXXXXXXXXX.us-west-2.cloudsearch.amazonaws.com',
config=Config(signature_version=UNSIGNED))
results = cloudsearchdomain.search(query=u'foo')
print(results["hits"]["found"])
ディスカッション
コメント一覧
まだ、コメントがありません