Amazon Application Migration Service · Schema
Job
A migration or conversion job
Amazon Application Migration ServiceMigrationLift And ShiftCloud Migration
Properties
| Name | Type | Description |
|---|---|---|
| jobID | string | Job ID |
| arn | string | ARN of the job |
| type | string | Job type |
| initiatedBy | string | Who initiated the job |
| creationDateTime | string | Date/time job was created |
| endDateTime | string | Date/time job ended |
| status | string | Job status |
| participatingServers | array | Servers participating in the job |
| tags | object | Tags on the job |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/amazon-application-migration-service/json-schema/application-migration-service-job-schema.json",
"title": "Job",
"description": "A migration or conversion job",
"type": "object",
"properties": {
"jobID": {
"type": "string",
"description": "Job ID"
},
"arn": {
"type": "string",
"description": "ARN of the job"
},
"type": {
"type": "string",
"description": "Job type"
},
"initiatedBy": {
"type": "string",
"description": "Who initiated the job"
},
"creationDateTime": {
"type": "string",
"description": "Date/time job was created"
},
"endDateTime": {
"type": "string",
"description": "Date/time job ended"
},
"status": {
"type": "string",
"description": "Job status"
},
"participatingServers": {
"type": "array",
"description": "Servers participating in the job"
},
"tags": {
"type": "object",
"description": "Tags on the job"
}
}
}