I am using Amazon Neptune as GraphDB.
While trying to load data from the S3 bucket facing an exception mentioning "{"code":"InvalidParameterException","detailedMessage":"The source s3-URL does not exist/not reachable"}".
Have checked the S3 resource URL, it is accessible publicly. Unable to understand why this error is coming.
I have referred this AWS documentation and use the below post call to the Neptune DB instance for the data loading.
curl -X POST -H 'Content-Type: application/json' neptune-endpoint:8182/loader -d ' { "source" : "s3-URL", "format" : "csv", "iamRoleArn" : "arn:aws:iam::", "region" : "us-east-2", "failOnError" : "FALSE", "parallelism" : "MEDIUM", "updateSingleCardinalityProperties" : "FALSE" }'