DescribeLifecycleHooksAnswer

DescribeLifecycleHooksAnswer schema from Auto Scaling

Amazon Web ServicesAuto ScalingComputeEC2High AvailabilityScaling

Properties

Name Type Description
LifecycleHooks object
View JSON Schema on GitHub

JSON Schema

ec2-auto-scaling-describe-lifecycle-hooks-answer-schema.json Raw ↑
{
  "$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-describe-lifecycle-hooks-answer-schema.json",
  "title": "DescribeLifecycleHooksAnswer",
  "description": "DescribeLifecycleHooksAnswer schema from Auto Scaling",
  "type": "object",
  "properties": {
    "LifecycleHooks": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LifecycleHooks"
        },
        {
          "description": "The lifecycle hooks for the specified group."
        }
      ]
    }
  },
  "example": {
    "LifecycleHooks": [
      {
        "AutoScalingGroupName": "my-auto-scaling-group",
        "DefaultResult": "ABANDON",
        "GlobalTimeout": 172800,
        "HeartbeatTimeout": 3600,
        "LifecycleHookName": "my-lifecycle-hook",
        "LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING",
        "NotificationTargetARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic",
        "RoleARN": "arn:aws:iam::123456789012:role/my-auto-scaling-role"
      }
    ]
  }
}