UntagResourceRequest schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-untag-resource-request-schema.json", "title": "UntagResourceRequest", "description": "UntagResourceRequest schema", "type": "object", "properties": { "ResourceARN": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The ARN of the resource." } ] }, "TagKeys": { "allOf": [ { "$ref": "#/components/schemas/TagKeyList" }, { "description": "A list of the keys of the tags to be removed from the resource." } ] } }, "required": [ "ResourceARN", "TagKeys" ] }