:doc:`Vault <index>` / Collection / multipart_uploads

*****************
multipart_uploads
*****************



.. py:attribute:: Glacier.Vault.multipart_uploads

  A collection of MultipartUpload resources.A MultipartUpload Collection will include all resources by default, and extreme caution should be taken when performing actions on all resources.

  .. py:method:: all()

    Creates an iterable of all MultipartUpload resources in the collection.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glacier-2012-06-01/ListMultipartUploads>`_    


    **Request Syntax**
    ::

      multipart_upload_iterator = vault.multipart_uploads.all()
      
      
    
    :rtype: list(:py:class:`glacier.MultipartUpload`)
    :returns: A list of MultipartUpload resources
    

  .. py:method:: filter(**kwargs)

    Creates an iterable of all MultipartUpload resources in the collection filtered by kwargs passed to method. A MultipartUpload collection will include all resources by default if no filters are provided, and extreme caution should be taken when performing actions on all resources.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glacier-2012-06-01/ListMultipartUploads>`_    


    **Request Syntax**
    ::

      multipart_upload_iterator = vault.multipart_uploads.filter(
          marker='string',
          limit='string'
      )
      
    :type marker: string
    :param marker: 

      An opaque string used for pagination. This value specifies the upload at which the listing of uploads should begin. Get the marker value from a previous List Uploads response. You need only include the marker if you are continuing the pagination of results started in a previous List Uploads request.

      

    
    :type limit: string
    :param limit: 

      Specifies the maximum number of uploads returned in the response body. If this value is not specified, the List Uploads operation returns up to 50 uploads.

      

    
    
    :rtype: list(:py:class:`glacier.MultipartUpload`)
    :returns: A list of MultipartUpload resources
    

  .. py:method:: limit(**kwargs)

    Creates an iterable up to a specified amount of MultipartUpload resources in the collection.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glacier-2012-06-01/ListMultipartUploads>`_    


    **Request Syntax**
    ::

      multipart_upload_iterator = vault.multipart_uploads.limit(
          count=123
      )
      
    :type count: integer
    :param count: The limit to the number of resources in the iterable.

    
    
    :rtype: list(:py:class:`glacier.MultipartUpload`)
    :returns: A list of MultipartUpload resources
    

  .. py:method:: page_size(**kwargs)

    Creates an iterable of all MultipartUpload resources in the collection, but limits the number of items returned by each service call by the specified amount.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glacier-2012-06-01/ListMultipartUploads>`_    


    **Request Syntax**
    ::

      multipart_upload_iterator = vault.multipart_uploads.page_size(
          count=123
      )
      
    :type count: integer
    :param count: The number of items returned by each service call

    
    
    :rtype: list(:py:class:`glacier.MultipartUpload`)
    :returns: A list of MultipartUpload resources
    