:doc:`Greengrass <../../greengrass>` / Client / list_bulk_deployments

*********************
list_bulk_deployments
*********************



.. py:method:: Greengrass.Client.list_bulk_deployments(**kwargs)

  Returns a list of bulk deployments.

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListBulkDeployments>`_  


  **Request Syntax**
  ::

    response = client.list_bulk_deployments(
        MaxResults='string',
        NextToken='string'
    )
    
  :type MaxResults: string
  :param MaxResults: The maximum number of results to be returned per request.

  
  :type NextToken: string
  :param NextToken: The token for the next set of results, or ''null'' if there are no additional results.

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'BulkDeployments': [
              {
                  'BulkDeploymentArn': 'string',
                  'BulkDeploymentId': 'string',
                  'CreatedAt': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* Success. The response body contains the list of bulk deployments.
      

      - **BulkDeployments** *(list) --* A list of bulk deployments.
        

        - *(dict) --* Information about a bulk deployment. You cannot start a new bulk deployment while another one is still running or in a non-terminal state.
          

          - **BulkDeploymentArn** *(string) --* The ARN of the bulk deployment.
          

          - **BulkDeploymentId** *(string) --* The ID of the bulk deployment.
          

          - **CreatedAt** *(string) --* The time, in ISO format, when the deployment was created.
      
    
      

      - **NextToken** *(string) --* The token for the next set of results, or ''null'' if there are no additional results.
  
  **Exceptions**
  
  *   :py:class:`Greengrass.Client.exceptions.BadRequestException`

  