*describe_sgroups(filter)* does not work
Closed this issue · 1 comments
nturaga commented
In the code for describe_sgroup(filter=list(description ='BLAH')
the filter function doesn't work.
Because in the line , the function .makelist
sets the names as ".Key" , when it should be .Name
Line 3 in 5ec77d3
names(tmp) <- c(paste0(type, ".", 1:length(list), ".Key"),
This should be written as names(tmp) <- c(paste0(type, ".", 1:length(list), ".Name"),
This doesn't work according to the aws api, as used here in describe_sgroups.
Line 58 in 5ec77d3
query <- c(query, .makelist(filter, type = "Filter"))