You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add IAM rights to CloudWatch logs
* Add AWS CloudWatch logging
* Remove parameter parsing logic
* Add instruction comments to script
* Update logging text
* Update changelog
* Revise LC, fix Docker run issue
* revert version var name change
---------
Co-authored-by: Michael Chin <[email protected]>
echo "export AWS_REGION=us-west-2" >> ~/.bashrc # modify region if needed
5
+
echo "export GRAPH_NOTEBOOK_SERVICE=neptune-db" >> ~/.bashrc # Set to `neptune-graph` for Neptune Analytics.
6
+
echo "export GRAPH_NOTEBOOK_HOST=CHANGE-ME" >> ~/.bashrc # Set to the endpoint of your Neptune instance
7
+
echo "export GRAPH_NOTEBOOK_PORT=8182" >> ~/.bashrc # Set to the port of your Neptune instance
8
+
echo "export GRAPH_NOTEBOOK_AUTH_MODE=IAM" >> ~/.bashrc # Set to `DEFAULT` if using DB cluster that is not IAM enabled. Leave as `IAM` for Neptune Analytics.
9
+
echo "export AWS_REGION=us-west-2" >> ~/.bashrc # Set to AWS region of Neptune instance and notebook.
10
+
echo "export NEPTUNE_LOAD_FROM_S3_ROLE_ARN=" >> ~/.bashrc # Sets IAM role for Neptune DB bulk loads via graph-notebook.
10
11
11
12
EXPLORER_VERSION=""
12
-
for i in "$@"
13
-
do
14
-
case $i in
15
-
-ev=*|--explorer-version=*)
16
-
EXPLORER_VERSION="${i#*=}"
17
-
echo "set explorer version to ${EXPLORER_VERSION}"
0 commit comments