Amazon IoT Greengrass · Schema
CreateComponentVersionResponse
CreateComponentVersionResponse schema
Edge ComputingIoTLambdaMachine LearningReal-Time Processing
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| componentName | object | |
| componentVersion | object | |
| creationTimestamp | object | |
| status | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-create-component-version-response-schema.json",
"title": "CreateComponentVersionResponse",
"description": "CreateComponentVersionResponse schema",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentVersionARN"
},
{
"description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the component version."
}
]
},
"componentName": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentNameString"
},
{
"description": "The name of the component."
}
]
},
"componentVersion": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentVersionString"
},
{
"description": "The version of the component."
}
]
},
"creationTimestamp": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time at which the component was created, expressed in ISO 8601 format."
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/CloudComponentStatus"
},
{
"description": "The status of the component version in IoT Greengrass V2. This status is different from the status of the component on a core device."
}
]
}
},
"required": [
"componentName",
"componentVersion",
"creationTimestamp",
"status"
]
}