I'm logging in successfully to AWS via paws however am in the parent account.
library(paws)
Sys.setenv(
AWS_ACCESS_KEY_ID = "*****************************************",
AWS_SECRET_ACCESS_KEY = "************************************",
AWS_SESSION_TOKEN = "******************************************************************",
AWS_REGION = "us-west-2"
)
mys3<- paws::s3()
temp_s3 <- mys3$list_buckets()
I'm want to change to a child account and list the buckets under it. Any ideas?