Class: Aws::AutoScaling::Types::DescribeLoadBalancerTargetGroupsRequest

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 DescribeLoadBalancerTargetGroupsRequest data as a hash:

{
  auto_scaling_group_name: "ResourceName", # required
  next_token: "XmlString",
  max_records: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


1634
1635
1636
1637
1638
1639
# File 'lib/aws-sdk-autoscaling/types.rb', line 1634

class DescribeLoadBalancerTargetGroupsRequest < Struct.new(
  :auto_scaling_group_name,
  :next_token,
  :max_records)
  include Aws::Structure
end

#max_recordsInteger

The maximum number of items to return with this call. The default value is 100 and the maximum value is 100.

Returns:

  • (Integer)


1634
1635
1636
1637
1638
1639
# File 'lib/aws-sdk-autoscaling/types.rb', line 1634

class DescribeLoadBalancerTargetGroupsRequest < Struct.new(
  :auto_scaling_group_name,
  :next_token,
  :max_records)
  include Aws::Structure
end

#next_tokenString

The token for the next set of items to return. (You received this token from a previous call.)

Returns:

  • (String)


1634
1635
1636
1637
1638
1639
# File 'lib/aws-sdk-autoscaling/types.rb', line 1634

class DescribeLoadBalancerTargetGroupsRequest < Struct.new(
  :auto_scaling_group_name,
  :next_token,
  :max_records)
  include Aws::Structure
end