:doc:`MainframeModernization <../../m2>` / Client / list_batch_job_restart_points

*****************************
list_batch_job_restart_points
*****************************



.. py:method:: MainframeModernization.Client.list_batch_job_restart_points(**kwargs)

  

  Lists all the job steps for a JCL file to restart a batch job. This is only applicable for Micro Focus engine with versions 8.0.6 and above.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/ListBatchJobRestartPoints>`_  


  **Request Syntax**
  ::

    response = client.list_batch_job_restart_points(
        applicationId='string',
        authSecretsManagerArn='string',
        executionId='string'
    )
    
  :type applicationId: string
  :param applicationId: **[REQUIRED]** 

    The unique identifier of the application.

    

  
  :type authSecretsManagerArn: string
  :param authSecretsManagerArn: 

    The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for List Batch Job Restart Points operation.

    

  
  :type executionId: string
  :param executionId: **[REQUIRED]** 

    The unique identifier of the batch job execution.

    

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

    
    ::

      {
          'batchJobSteps': [
              {
                  'procStepName': 'string',
                  'procStepNumber': 123,
                  'stepCheckpoint': 123,
                  'stepCheckpointStatus': 'string',
                  'stepCheckpointTime': datetime(2015, 1, 1),
                  'stepCondCode': 'string',
                  'stepName': 'string',
                  'stepNumber': 123,
                  'stepRestartable': True|False
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **batchJobSteps** *(list) --* 

        Returns all the batch job steps and related information for a batch job that previously ran.

        
        

        - *(dict) --* 

          Provides information related to a job step.

          
          

          - **procStepName** *(string) --* 

            The name of a procedure step.

            
          

          - **procStepNumber** *(integer) --* 

            The number of a procedure step.

            
          

          - **stepCheckpoint** *(integer) --* 

            A registered step-level checkpoint identifier that can be used for restarting an Amazon Web Services Blu Age application batch job.

            
          

          - **stepCheckpointStatus** *(string) --* 

            The step-level checkpoint status for an Amazon Web Services Blu Age application batch job.

            
          

          - **stepCheckpointTime** *(datetime) --* 

            The step-level checkpoint status for an Amazon Web Services Blu Age application batch job.

            
          

          - **stepCondCode** *(string) --* 

            The condition code of a step.

            
          

          - **stepName** *(string) --* 

            The name of a step.

            
          

          - **stepNumber** *(integer) --* 

            The number of a step.

            
          

          - **stepRestartable** *(boolean) --* 

            Specifies if a step can be restarted or not.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`MainframeModernization.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`MainframeModernization.Client.exceptions.ThrottlingException`

  
  *   :py:class:`MainframeModernization.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`MainframeModernization.Client.exceptions.ConflictException`

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

  
  *   :py:class:`MainframeModernization.Client.exceptions.InternalServerException`

  