Amazon HealthOmics · Schema
StartReadSetExportJobRequest
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing
Properties
| Name | Type | Description |
|---|---|---|
| destination | object | |
| roleArn | object | |
| clientToken | object | |
| sources | 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-start-read-set-export-job-request-schema.json",
"title": "StartReadSetExportJobRequest",
"type": "object",
"required": [
"destination",
"roleArn",
"sources"
],
"properties": {
"destination": {
"allOf": [
{
"$ref": "#/components/schemas/S3Destination"
},
{
"description": "A location for exported files in Amazon S3."
}
]
},
"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/StartReadSetExportJobRequestSourcesList"
},
{
"description": "The job's source files."
}
]
}
}
}