:doc:`LaunchWizard <../../launch-wizard>` / Client / list_deployment_events

**********************
list_deployment_events
**********************



.. py:method:: LaunchWizard.Client.list_deployment_events(**kwargs)

  

  Lists the events of a deployment.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentEvents>`_  


  **Request Syntax**
  ::

    response = client.list_deployment_events(
        deploymentId='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type deploymentId: string
  :param deploymentId: **[REQUIRED]** 

    The ID of the deployment.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.

    

  
  :type nextToken: string
  :param nextToken: 

    The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

    

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

    
    ::

      {
          'deploymentEvents': [
              {
                  'name': 'string',
                  'description': 'string',
                  'status': 'CANCELED'|'CANCELING'|'COMPLETED'|'CREATED'|'FAILED'|'IN_PROGRESS'|'PENDING'|'TIMED_OUT',
                  'statusReason': 'string',
                  'timestamp': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **deploymentEvents** *(list) --* 

        Lists the deployment events.

        
        

        - *(dict) --* 

          A summary of the deployment event data.

          
          

          - **name** *(string) --* 

            The name of the deployment event.

            
          

          - **description** *(string) --* 

            The description of the deployment event.

            
          

          - **status** *(string) --* 

            The status of the deployment event.

            
          

          - **statusReason** *(string) --* 

            The reason of the deployment event status.

            
          

          - **timestamp** *(datetime) --* 

            The timestamp of the deployment event.

            
      
    
      

      - **nextToken** *(string) --* 

        The token to include in another request to get the next page of items. This value is ``null`` when there are no more items to return.

        
  
  **Exceptions**
  
  *   :py:class:`LaunchWizard.Client.exceptions.InternalServerException`

  
  *   :py:class:`LaunchWizard.Client.exceptions.ValidationException`

  
  *   :py:class:`LaunchWizard.Client.exceptions.ResourceNotFoundException`

  