I have an S3 URI, and I need to extract the region, bucket and object key so that I can use the Aws::S3::Model::PutObjectRequest
to upload an object.
Does the AWS C++ SDK provide a utility function for doing purpose? Should I use a regular expression?
I note that the AWS Java SDK provides AmazonS3URI, but I haven't found anything similar so far in the C++ SDK.
Many thanks.