Collections reference - Boto3 1.34.74 documentation
A collection manager provides access to resource collection instances,
which can be iterated and filtered. The manager exposes some
convenience functions that are also found on resource collections,
such as all() andfilter().
Get all items:
>>> for bucket in s3.buckets.all():... print(bucket.name)
Get only some items via filtering:
>>> for queue in sqs.queues.filter(QueueNamePrefix='AWS'):... print(queue.url)
Get whole pages of items:
>>> for page in s3.Bucket('boto3').objects.pages():... for obj in page:... print(obj.key)
A collection manager is not iterable. You must call one of the
methods that return a ResourceCollection before trying
to iterate, slice, or convert to a list.
See the Collections guide for a high-level overview of collections, including when remote service requests are performed.
- Parameters:
model – Collection model
parent (
ServiceResource) – The collection’s parent resourcefactory (
ResourceFactory) – The resource factory to create new resourcesservice_context (
ServiceContext) – Context about the AWS service
- all()[source]#
Get all items from the collection, optionally with a custom page size and item count limit.
This method returns an iterable generator which yields individual resource instances. Example use:
# Iterate through items>>> for queue in sqs.queues.all():... print(queue.url)''# Convert to list>>> queues = list(sqs.queues.all())>>> len(queues)2
- filter(**kwargs)[source]#
Get items from the collection, passing keyword arguments along as parameters to the underlying service operation, which are typically used to filter the results.
This method returns an iterable generator which yields individual resource instances. Example use:
# Iterate through items>>> for queue in sqs.queues.filter(Param='foo'):... print(queue.url)''# Convert to list>>> queues = list(sqs.queues.filter(Param='foo'))>>> len(queues)2
- Return type:
- iterator(**kwargs)[source]#
Get a resource collection iterator from this manager.
- Return type:
- Returns:
An iterable representing the collection of resources
- limit(count)[source]#
Return at most this many resources.
>>> for bucket in s3.buckets.limit(5):... print(bucket.name)'bucket1''bucket2''bucket3''bucket4''bucket5'
- Parameters:
count (int) – Return no more than this many items
- Return type:
- page_size(count)[source]#
Fetch at most this many resources per service request.
>>> for obj in s3.Bucket('boto3').objects.page_size(100):... print(obj.key)
- Parameters:
count (int) – Fetch this many items per request
- Return type:
- pages()[source]#
A generator which yields pages of resource instances after doing the appropriate service operation calls and handling any pagination on your behalf. Non-paginated calls will return a single page of items.
Page size, item limit, and filter parameters are applied if they have previously been set.
>>> bucket = s3.Bucket('boto3')>>> for page in bucket.objects.pages():... for obj in page:... print(obj.key)'key1''key2'
- Return type:
list(
ServiceResource)- Returns:
List of resource instances