AWS integration guide#
The Neptune–AWS integration lets you initialize Neptune by reading your credentials from AWS Secrets.
Before you start#
- Set up your Neptune project, where the runs and metadata will go: Creating a Neptune project
- Set up an AWS secret with the info of your Neptune account and project: Setting up Neptune credentials in AWS Secrets
Installing the integration#
Note: You must use this integration with the "neptune-client" package until neptune-aws is updated to 1.0.0
.
Usage#
You can now initialize a Neptune run by passing the name of the secret and an AWS region:
from neptune.integrations.aws import init_run
run = init_run(
secret="neptune-secret", # Use your secret name here
region="us-west-1", # Use the appropriate region here
)
Related
- neptune-aws repo on GitHub