boto / boto3

AWS SDK for Python
https://aws.amazon.com/sdk-for-python/
Apache License 2.0
9.04k stars 1.87k forks source link

Neptune describe_db_instances #2114

Closed loutente closed 5 years ago

loutente commented 5 years ago

Hello,

client = boto3.client('neptune', region_name='eu-west-1')
response = client.describe_db_instances()

Result

{'DBInstances': [{'DBInstanceIdentifier': '...', 'DBInstanceClass': 'db.m5.large', 'Engine': 'sqlserver-se', ...

Is it normal to retrieve sqlserver on neptune describe instances call ?

swetashre commented 5 years ago

@loutente - Thank you for your post. This behaviour is expected because neptune describe_db_instances is the same as rds describe_db_instances, so you are probably just seeing non-neptune DB instances from the same account. Can you check if this is the case?

If you have more doubt about this then i would recommend posting on their forum.

loutente commented 5 years ago

Yes, All the resources are from my account, just surprising to have rds instances when calling neptune client.

swetashre commented 5 years ago

@loutente - Thank you for the feedback. Unfortunately we can't do much on the SDK side. These apis are controlled by the service team.

I am closing the issue as the issue has been resolved. Please feel free to reopen if you have any concerns.