Class: Aws::AutoScaling::Types::DescribeLifecycleHooksType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-autoscaling/types.rb

Overview

Note:

When making an API call, you may pass DescribeLifecycleHooksType data as a hash:

{
  auto_scaling_group_name: "ResourceName", # required
  lifecycle_hook_names: ["AsciiStringMaxLen255"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


1603
1604
1605
1606
1607
# File 'lib/aws-sdk-autoscaling/types.rb', line 1603

class DescribeLifecycleHooksType < Struct.new(
  :auto_scaling_group_name,
  :lifecycle_hook_names)
  include Aws::Structure
end

#lifecycle_hook_namesArray<String>

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

Returns:

  • (Array<String>)


1603
1604
1605
1606
1607
# File 'lib/aws-sdk-autoscaling/types.rb', line 1603

class DescribeLifecycleHooksType < Struct.new(
  :auto_scaling_group_name,
  :lifecycle_hook_names)
  include Aws::Structure
end