I have created an aws s3-account and want to connect it to R.
Here is my code
library(aws.s3)
Sys.setenv("AWS_ACCESS_KEY_ID" = "key",
"AWS_SECRET_ACCESS_KEY" = "secret-key",
"AWS_DEFAULT_REGION" = "Asia Pacific (Mumbai) ap-south-1")
Error in curl::curl_fetch_memory(url, handle = handle) :
URL using bad/illegal format or missing URL
I am getting this error. Dont understand where the issue is.
can you guys help?