0

Based on my research, I found out that AWS SDK CPP allows upload/download files to bucket.

I need to have same upload/download access on an AWS EBS volume of types st1, but I could not find any example or tutorials about it. Is there some way to do that ? I search in the very large documentation without success.

Vuwox
  • 2,331
  • 18
  • 33

1 Answers1

1

EBS volumes can only be accessed via EC2 instances. Unlike S3, for example, it's not a standalone service offering by AWS.

Marco M.
  • 2,956
  • 2
  • 29
  • 22
  • This is what I figure out. There is no API function to access it. But is there a way to access it via HTTP request ? Or ssh ? – Vuwox May 14 '19 at 01:47
  • You can only access the volumes through the ec2 instances attached to them – Marco M. May 14 '19 at 16:40