LoginSignup
1
2

More than 5 years have passed since last update.

AWS SDKv2 Ruby CloudSearch

Posted at

AWSのSDKv2でCloudSearchを操作しよう(Ruby)

バージョン2の注意点

Module名がAWSではなく、Aws

接続設定

定義系 インデックス作成や辞書登録など

CloudSearch::Client

    client = Aws::CloudSearch::Client.new(
      access_key_id: [AccessKey],
      secret_access_key: [SecretAccessKey]
    )

検索系

CloudSearchDomain::Client

    client = Aws::CloudSearchDomain::Client.new(
      endpoint: [Endpoint]
    )
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2