{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-vision/refs/heads/main/json-schema/amazon-lookout-for-vision-greengrass-configuration-schema.json", "title": "GreengrassConfiguration", "description": "
Configuration information for the AWS IoT Greengrass component created in a model packaging job. For more information, see StartModelPackagingJob.
You can't specify a component with the same ComponentName and Componentversion as an existing component with the same component name and component version.
Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify TargetDevice, don't specify CompilerOptions.
For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.
" } ] }, "TargetDevice": { "allOf": [ { "$ref": "#/components/schemas/TargetDevice" }, { "description": "The target device for the model. Currently the only supported value isjetson_xavier. If you specify TargetDevice, you can't specify TargetPlatform. "
}
]
},
"TargetPlatform": {
"allOf": [
{
"$ref": "#/components/schemas/TargetPlatform"
},
{
"description": "The target platform for the model. If you specify TargetPlatform, you can't specify TargetDevice. "
}
]
},
"S3OutputLocation": {
"allOf": [
{
"$ref": "#/components/schemas/S3Location"
},
{
"description": " An S3 location in which Lookout for Vision stores the component artifacts. "
}
]
},
"ComponentName": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentName"
},
{
"description": " A name for the AWS IoT Greengrass component. "
}
]
},
"ComponentVersion": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentVersion"
},
{
"description": "A Version for the AWS IoT Greengrass component. If you don't provide a value, a default value of Model Version.0.0 is used. "
}
]
},
"ComponentDescription": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentDescription"
},
{
"description": " A description for the AWS IoT Greengrass component. "
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": " A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component. "
}
]
}
},
"required": [
"S3OutputLocation",
"ComponentName"
]
}