Amazon Panorama · Schema
CreatePackageImportJobRequest
CreatePackageImportJobRequest schema from Amazon Panorama
CamerasComputer VisionEdge MLIndustrial IoT
Properties
| Name | Type | Description |
|---|---|---|
| ClientToken | object | |
| InputConfig | object | |
| JobTags | object | |
| JobType | object | |
| OutputConfig | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-create-package-import-job-request-schema.json",
"title": "CreatePackageImportJobRequest",
"description": "CreatePackageImportJobRequest schema from Amazon Panorama",
"type": "object",
"properties": {
"ClientToken": {
"allOf": [
{
"$ref": "#/components/schemas/ClientToken"
},
{
"description": "A client token for the package import job."
}
]
},
"InputConfig": {
"allOf": [
{
"$ref": "#/components/schemas/PackageImportJobInputConfig"
},
{
"description": "An input config for the package import job."
}
]
},
"JobTags": {
"allOf": [
{
"$ref": "#/components/schemas/JobTagsList"
},
{
"description": "Tags for the package import job."
}
]
},
"JobType": {
"allOf": [
{
"$ref": "#/components/schemas/PackageImportJobType"
},
{
"description": "A job type for the package import job."
}
]
},
"OutputConfig": {
"allOf": [
{
"$ref": "#/components/schemas/PackageImportJobOutputConfig"
},
{
"description": "An output config for the package import job."
}
]
}
},
"required": [
"ClientToken",
"InputConfig",
"JobType",
"OutputConfig"
]
}