How to describe snapshots owned by me and filtering by tag simultaneously?
It describe snapshots owned by me with code below:
JavaScript
x
11
11
1
import boto3
2
region_src = 'us-east-1'
3
client_src = boto3.client('ec2', region_name=region_src)
4
5
def get_snapshots_src():
6
response = client_src.describe_snapshots(OwnerIds=['012345678900'])
7
return response["Snapshots"]
8
9
snap = get_snapshots_src()
10
print(*snap, sep="n")
11
But when I add “Filters”, its starts ignoring “OwnerIds” and filtering only by tag.
JavaScript
1
2
1
client_src.describe_snapshots(OwnerIds=['012345678900'],Filters=[{'Name': 'tag:Disaster_Recovery', 'Values': ['Full']}])
2
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
1
15
15
1
Filters=[
2
{
3
'Name': 'tag:key',
4
'Values': [
5
'value'
6
]
7
},
8
{
9
'Name': 'owner-id',
10
'Values': [
11
'value'
12
]
13
}
14
]
15
and it will work well same as me.
JavaScript
1
18
18
1
Filters (list) --
2
The filters.
3
4
description - A description of the snapshot.
5
encrypted - Indicates whether the snapshot is encrypted (true | false )
6
owner-alias - Value from an Amazon-maintained list (amazon | self | all | aws-marketplace | microsoft ) of snapshot owners. Not to be confused with the user-configured AWS account alias, which is set from the IAM console.
7
owner-id - The ID of the AWS account that owns the snapshot.
8
progress - The progress of the snapshot, as a percentage (for example, 80%).
9
snapshot-id - The snapshot ID.
10
start-time - The time stamp when the snapshot was initiated.
11
status - The status of the snapshot (pending | completed | error ).
12
tag :<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA , specify tag:Owner for the filter name and TeamA for the filter value.
13
tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
14
volume-id - The ID of the volume the snapshot is for.
15
volume-size - The size of the volume, in GiB.
16
(dict) --
17
A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs. The filters supported by a describe operation are documented with the describe operation.
18