amazon-web-servicesaws-sdkaws-sdk-cpp

Is it possible to listing RDS using C ++? (AWS)


I would like to listing EC2 and RDS using the C ++ AWS SDK.

The EC2 listing was successful with an example in the AWS document. However, I can not find an example of an RDS listing.

I need help listing RDS in C ++. Is there a good example?


Solution

  • DescribeDBInstances() exists in the AWS SDK for C++, according to this API docs page. In case if you don't find something in the documentation it is always good to check the source code itself. This function's code can be found in the following GitHub page.