boto / botocore

The low-level, core functionality of boto3 and the AWS CLI.
Apache License 2.0
1.5k stars 1.09k forks source link

ResourceGroupsTaggingAPI for AWS Neptune #1843

Closed tsiq-shiv closed 5 years ago

tsiq-shiv commented 5 years ago

AWS Docs say that resource groups tagging API support AWS Neptune, however it does not work and returns with an InvalidParameterException How to replicate: aws resourcegroupstaggingapi get-resources --resource-type-filters neptune-db ->

An error occurred (InvalidParameterException) when calling the GetResources operation: Unsupported service=neptune-db in ResourceTypeFilter - neptune-db:

Running boto3 1.9.247 and botocore 1.12.247

swetashre commented 5 years ago

@tsiq-shiv - Thank you for your post. Neptune uses the same ARN format as RDS as defined here: https://docs.aws.amazon.com/neptune/latest/userguide/tagging.ARN.html

So you can use rds as --resource-type-filters to get neptune instances.

tsiq-shiv commented 5 years ago

Thanks!