Skip to content
Advertisement

How to describe snapshots by OwnerIds and Filters using boto3

How to describe snapshots owned by me and filtering by tag simultaneously?

It describe snapshots owned by me with code below:

JavaScript

But when I add “Filters”, its starts ignoring “OwnerIds” and filtering only by tag.

JavaScript

I’m follow an official boto3 documentation: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.describe_snapshots

Advertisement

Answer

I think the Filters and OwnerIds options are working separately. I expect that the OwnerIds option is an abbreviation of the Filters option for owner-id, because I also got the result that the OwnerIds option is ignored.

And so, you can use the filter option such as

JavaScript

and it will work well same as me.


JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement