i am trying to read a csv file which is present in AWS s3 from Sagemaker R studio. I tried the below code.
library(reticulate)
library(readr)
library(dplyr)
boto3 <- import("boto3")
s3 <- boto3$client('s3')
d <- s3$download_file(Bucket=bucket_name, Key=path, Filename="file_name.csv")
i receive ClientError: An error occured (404) when calling the head object operation. Could some one please help