Learn R Programming

paws.management (version 0.1.12)

autoscaling_describe_lifecycle_hooks: Describes the lifecycle hooks for the specified Auto Scaling group

Description

Describes the lifecycle hooks for the specified Auto Scaling group.

Usage

autoscaling_describe_lifecycle_hooks(AutoScalingGroupName,
  LifecycleHookNames)

Value

A list with the following syntax:

list(
  LifecycleHooks = list(
    list(
      LifecycleHookName = "string",
      AutoScalingGroupName = "string",
      LifecycleTransition = "string",
      NotificationTargetARN = "string",
      RoleARN = "string",
      NotificationMetadata = "string",
      HeartbeatTimeout = 123,
      GlobalTimeout = 123,
      DefaultResult = "string"
    )
  )
)

Arguments

AutoScalingGroupName

[required] The name of the Auto Scaling group.

LifecycleHookNames

The names of one or more lifecycle hooks. If you omit this parameter, all lifecycle hooks are described.

Request syntax

svc$describe_lifecycle_hooks(
  AutoScalingGroupName = "string",
  LifecycleHookNames = list(
    "string"
  )
)

Examples

Run this code
if (FALSE) {
# This example describes the lifecycle hooks for the specified Auto
# Scaling group.
svc$describe_lifecycle_hooks(
  AutoScalingGroupName = "my-auto-scaling-group"
)
}

Run the code above in your browser using DataLab