是否可以使用 C++ 列出 RDS? (AWS)
Is it possible to listing RDS using C ++? (AWS)
我想使用 C++ AWS SDK 列出 EC2 和 RDS。
EC2 列表成功,AWS 文档中有示例。
但是,我找不到 RDS 列表的示例。
我需要帮助在 C++ 中列出 RDS。
有没有好的例子?
DescribeDBInstances()
存在于适用于 C++ 的 AWS 开发工具包中,根据 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。
我想使用 C++ AWS SDK 列出 EC2 和 RDS。
EC2 列表成功,AWS 文档中有示例。 但是,我找不到 RDS 列表的示例。
我需要帮助在 C++ 中列出 RDS。 有没有好的例子?
DescribeDBInstances()
存在于适用于 C++ 的 AWS 开发工具包中,根据 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。