DeleteLifecycleHookType schema from Auto Scaling
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-auto-scaling/refs/heads/main/json-schema/ec2-auto-scaling-delete-lifecycle-hook-type-schema.json", "title": "DeleteLifecycleHookType", "description": "DeleteLifecycleHookType schema from Auto Scaling", "type": "object", "properties": { "LifecycleHookName": { "allOf": [ { "$ref": "#/components/schemas/AsciiStringMaxLen255" }, { "description": "The name of the lifecycle hook." } ] }, "AutoScalingGroupName": { "allOf": [ { "$ref": "#/components/schemas/XmlStringMaxLen255" }, { "description": "The name of the Auto Scaling group." } ] } }, "required": [ "LifecycleHookName", "AutoScalingGroupName" ] }