Skip to main content

runs_in_batches

Creates, updates, deletes, gets or lists a runs_in_batches resource.

Overview

Nameruns_in_batches
TypeResource
Idaws.omics.runs_in_batches

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
run_arnstringThe unique ARN of the workflow run. (pattern: <code>arn:.+</code>)
run_idstringThe HealthOmics-generated identifier for the workflow run. Empty if submission failed. (pattern: <code>[0-9]+</code>)
run_internal_uuidstringThe universally unique identifier (UUID) for the run. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
run_setting_idstringThe customer-provided identifier for the run configuration. Use this to correlate results back to the input configuration provided in inlineSettings or s3UriSettings. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
submission_failure_messagestringA detailed message describing the submission failure. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
submission_failure_reasonstringThe error category for a failed submission. See the run-level failure table in the HealthOmics User Guide for details on each value. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)
submission_statusstringThe submission outcome for this run. (SUCCESS, FAILED, CANCEL_SUCCESS, CANCEL_FAILED, DELETE_SUCCESS, DELETE_FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_runs_in_batchselectbatch_id, regionmaxItems, startingToken, submissionStatus, runSettingId, runIdReturns a paginated list of individual workflow runs within a specific batch. Use this operation to map each runSettingId to its HealthOmics-generated runId, and to check the submission status of each run. Only one filter per call is supported.

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.

NameDatatypeDescription
batch_idstringThe identifier portion of the run batch ARN.
regionstringAWS region (default: us-east-1)
maxItemsintegerThe maximum number of runs to return.
runIdstringFilter runs by the HealthOmics-generated run ID.
runSettingIdstringFilter runs by the customer-provided run setting ID.
startingTokenstringA pagination token returned from a prior ListRunsInBatch call.
submissionStatusstringFilter runs by submission status.

SELECT examples

Returns a paginated list of individual workflow runs within a specific batch. Use this operation to map each runSettingId to its HealthOmics-generated runId, and to check the submission status of each run. Only one filter per call is supported.

SELECT
run_arn,
run_id,
run_internal_uuid,
run_setting_id,
submission_failure_message,
submission_failure_reason,
submission_status
FROM aws.omics.runs_in_batches
WHERE batch_id = '{{ batch_id }}' -- required
AND region = '{{ region }}' -- required
AND maxItems = '{{ maxItems }}'
AND startingToken = '{{ startingToken }}'
AND submissionStatus = '{{ submissionStatus }}'
AND runSettingId = '{{ runSettingId }}'
AND runId = '{{ runId }}'
;