0

Currently looking at IBM cloud storage as an option. Wondering if there is any easy way to talk to it via c#. Would the Amazon s3 .net SDK work for it? Or maybe the amazon s3 c++ sdk?

It’s a shame that IBM only officially supports python, java and node sdk

Is there any gotchas if I were to try to leverage the amazon s3 sdk directly

savagepanda
  • 857
  • 12
  • 25

1 Answers1

-2

According to the IBM documentation, COS

supports a subset of the S3 API for easy migration of applications to IBM Cloud.

so, depending on what functions exactly you need you might be able to use the Amazon S3 SDK. If the functions you need turn out to not be supported can probably use HTTPClient to wrap COS native API endpoints.

mustaccio
  • 18,234
  • 16
  • 48
  • 57
  • How can I point to IBM when using Amazon SDK? I setup `AWS` at my appsettings.json with Profile and region, but there is no URL or something like that – geckos May 14 '20 at 17:37