Amazon HealthOmics · Schema
CreateReferenceStoreRequest
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing
Properties
| Name | Type | Description |
|---|---|---|
| name | object | |
| description | object | |
| sseConfig | object | |
| tags | object | |
| clientToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-create-reference-store-request-schema.json",
"title": "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."
}
]
}
}
}