:doc:`EMR <../../emr>` / Client / list_bootstrap_actions

**********************
list_bootstrap_actions
**********************



.. py:method:: EMR.Client.list_bootstrap_actions(**kwargs)

  

  Provides information about the bootstrap actions associated with a cluster.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListBootstrapActions>`_  


  **Request Syntax**
  ::

    response = client.list_bootstrap_actions(
        ClusterId='string',
        Marker='string'
    )
    
  :type ClusterId: string
  :param ClusterId: **[REQUIRED]** 

    The cluster identifier for the bootstrap actions to list.

    

  
  :type Marker: string
  :param Marker: 

    The pagination token that indicates the next set of results to retrieve.

    

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

    
    ::

      {
          'BootstrapActions': [
              {
                  'Name': 'string',
                  'ScriptPath': 'string',
                  'Args': [
                      'string',
                  ]
              },
          ],
          'Marker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      This output contains the bootstrap actions detail.

      
      

      - **BootstrapActions** *(list) --* 

        The bootstrap actions associated with the cluster.

        
        

        - *(dict) --* 

          An entity describing an executable that runs on a cluster.

          
          

          - **Name** *(string) --* 

            The name of the command.

            
          

          - **ScriptPath** *(string) --* 

            The Amazon S3 location of the command script.

            
          

          - **Args** *(list) --* 

            Arguments for Amazon EMR to pass to the command for execution.

            
            

            - *(string) --* 
        
      
    
      

      - **Marker** *(string) --* 

        The pagination token that indicates the next set of results to retrieve.

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

  
  *   :py:class:`EMR.Client.exceptions.InvalidRequestException`

  