batch_job_restart_points
Creates, updates, deletes, gets or lists a batch_job_restart_points resource.
Overview
| Name | batch_job_restart_points |
| Type | Resource |
| Id | aws.m2.batch_job_restart_points |
Fields
The following fields are returned by SELECT queries:
- list_batch_job_restart_points
| Name | Datatype | Description |
|---|---|---|
batch_job_steps | array | Returns all the batch job steps and related information for a batch job that previously ran. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_batch_job_restart_points | select | application_id, execution_id, region | authSecretsManagerArn | 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. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
application_id | string | The unique identifier of the application. |
execution_id | string | The unique identifier of the batch job execution. |
region | string | AWS region (default: us-east-1) |
authSecretsManagerArn | string | The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for List Batch Job Restart Points operation. |
SELECT examples
- list_batch_job_restart_points
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.
SELECT
batch_job_steps
FROM aws.m2.batch_job_restart_points
WHERE application_id = '{{ application_id }}' -- required
AND execution_id = '{{ execution_id }}' -- required
AND region = '{{ region }}' -- required
AND authSecretsManagerArn = '{{ authSecretsManagerArn }}'
;