Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connectorを作成する
Athenaの認証情報を入力する
作成したデータベースに接続する
{{ config( connection="connection_name" ) }} select * from table_name
connections.ymlを編集する
~/.morph/connections.yml
mkdir ~/.morph touch ~/.morph/connections.yml
connections: athena-connection: # 一意な任意の名前 type: athena # 固定 access_key: str secret_key: str session_token: str region: str catalog: str database: str # 任意 work_group: str # 任意
コード上でコネクターを使いデータを取得する
morph deploy