Amazon HealthOmics · JSON Structure

Healthomics Create Reference Store Request Structure

Type: object Properties: 5 Required: 1
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

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

Properties

name description sseConfig tags clientToken

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-create-reference-store-request-schema.json",
  "name": "CreateReferenceStoreRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceStoreName"
        },
        {
          "description": "A name for the store."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReferenceStoreDescription"
        },
        {
          "description": "A description for the store."
        }
      ]
    },
    "sseConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SseConfig"
        },
        {
          "description": "Server-side encryption (SSE) settings for the store."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Tags for the store."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientToken"
        },
        {
          "description": "To ensure that requests don't run multiple times, specify a unique token for each request."
        }
      ]
    }
  }
}