aws resourcegroupstaggingapi检索不存在的资源

时间:2020-09-14 01:15:50

标签: amazon-web-services amazon-rds tagging

我正在使用resourcegroupstaggingapi返回资源列表,以便可以检查不符合项(即没有适当标记的资源)。

在每天创建的电子邮件中,我一直看到一个RDS集群已经(通过控制台)删除了一个多星期。

当我运行“ aws rds describe-db-cluster”时,得到的响应为空(如预期),但是如果运行“ aws resourcegroupstaggingapi get-resources --resource-type-filters rds”,它将返回该集群我已经删除了它的标签。

这是一个错误还是resourcegroupstaggingapi是否以某种方式返回了有关状态的所有资源?

谢谢, 亚当

1 个答案:

答案 0 :(得分:0)

请您仔细检查您的命令。以下:

detect : uido
detect_date : 2015-07-19
detect_adress : uido ocean
lon :  34, 32, 35
lat :  125, 48, 10
num detect_date     water_temperature(℃)    Maximum wave height(m)  temperature(℃)  atmospheric pressure(hPa)   Wind direction(16points)    wind speed(m/s) 
0   2015/12/31 23:00    10.57   -   -   -   -   -   
1   2015/12/31 22:00    10.68   -   -   -   -   -   
2   2015/12/31 21:00    11.13   -   -   -   -   -   
3   2015/12/31 20:00    11.68   -   -   -   -   -   
4   2015/12/31 19:00    11.63   -   -   -   -   -   
5   2015/12/31 18:00    11.76   -   -   -   -   -   
6   2015/12/31 17:00    11.64   -   -   -   -   -   
7   2015/12/31 16:00    10.78   -   -   -   -   -   
8   2015/12/31 15:00    10.61   -   -   -   -   -   

仅适用于Aurora ,并且不会列出常规RDS数据库。要列出常规RDS数据库以及Aurora数据库,您必须使用:

file_path = './uido/';
filename = 'uido_2015-01_2015-12.txt';
file_id = fopen(filename,'r');

C = importdata(fn);
header = split(C(6),'\t');
format = repmat('%s', [1 length(hdr)]);

D = textscan(file_id, format, 'headerlines', 6, 'Delimiter', '\t');

因此,也许您希望删除常规数据库,但是由于仅对Aurora使用命令,因此您认为没有常规RDS实例吗?同样,您是否已经为RDS实例或数据库集群(Aurora)创建了资源组?