Amazon HealthOmics · JSON Structure

Healthomics Start Reference Import Job Request Structure

Type: object Properties: 3 Required: 2
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

StartReferenceImportJobRequest is a JSON Structure definition published by Amazon HealthOmics, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

roleArn clientToken sources

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-start-reference-import-job-request-schema.json",
  "name": "StartReferenceImportJobRequest",
  "type": "object",
  "required": [
    "roleArn",
    "sources"
  ],
  "properties": {
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleArn"
        },
        {
          "description": "A service role for the job."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientToken"
        },
        {
          "description": "To ensure that jobs don't run multiple times, specify a unique token for each job."
        }
      ]
    },
    "sources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StartReferenceImportJobRequestSourcesList"
        },
        {
          "description": "The job's source files."
        }
      ]
    }
  }
}