Amazon HealthOmics · JSON Structure

Healthomics Sequence Store Detail Structure

Details about a sequence store.

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

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

Properties

arn id name description sseConfig creationTime fallbackLocation

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-sequence-store-detail-schema.json",
  "name": "SequenceStoreDetail",
  "type": "object",
  "required": [
    "arn",
    "id",
    "creationTime"
  ],
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreArn"
        },
        {
          "description": "The store's ARN."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreId"
        },
        {
          "description": "The store's ID."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreName"
        },
        {
          "description": "The store's name."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SequenceStoreDescription"
        },
        {
          "description": "The store's description."
        }
      ]
    },
    "sseConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SseConfig"
        },
        {
          "description": "The store's server-side encryption (SSE) settings."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyntheticTimestamp_date_time"
        },
        {
          "description": "When the store was created."
        }
      ]
    },
    "fallbackLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Destination"
        },
        {
          "description": " An S3 location that is used to store files that have failed a direct upload. "
        }
      ]
    }
  },
  "description": "Details about a sequence store."
}