amazonka-autoscaling-2.0: Amazon Auto Scaling SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Description

Gets information about the Elastic Load Balancing target groups for the specified Auto Scaling group.

To determine the attachment status of the target group, use the State element in the response. When you attach a target group to an Auto Scaling group, the initial State value is Adding. The state transitions to Added after all Auto Scaling instances are registered with the target group. If Elastic Load Balancing health checks are enabled for the Auto Scaling group, the state transitions to InService after at least one Auto Scaling instance passes the health check. When the target group is in the InService state, Amazon EC2 Auto Scaling can terminate and replace any instances that are reported as unhealthy. If no registered instances pass the health checks, the target group doesn't enter the InService state.

Target groups also have an InService state if you attach them in the CreateAutoScalingGroup API call. If your target group state is InService, but it is not working properly, check the scaling activities by calling DescribeScalingActivities and take any corrective actions necessary.

For help with failed health checks, see Troubleshooting Amazon EC2 Auto Scaling: Health checks in the Amazon EC2 Auto Scaling User Guide. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

You can use this operation to describe target groups that were attached by using AttachLoadBalancerTargetGroups, but not for target groups that were attached by using AttachTrafficSources.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeLoadBalancerTargetGroups Source #

See: newDescribeLoadBalancerTargetGroups smart constructor.

Constructors

DescribeLoadBalancerTargetGroups' 

Fields

  • maxRecords :: Maybe Int

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

  • nextToken :: Maybe Text

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

  • autoScalingGroupName :: Text

    The name of the Auto Scaling group.

Instances

Instances details
ToHeaders DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

ToPath DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

ToQuery DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

AWSPager DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

AWSRequest DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Generic DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Associated Types

type Rep DescribeLoadBalancerTargetGroups :: Type -> Type #

Read DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Show DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

NFData DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Eq DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Hashable DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

type AWSResponse DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

type Rep DescribeLoadBalancerTargetGroups Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

type Rep DescribeLoadBalancerTargetGroups = D1 ('MetaData "DescribeLoadBalancerTargetGroups" "Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups" "amazonka-autoscaling-2.0-IerpHfP4BA3Ir4ZL2IR1De" 'False) (C1 ('MetaCons "DescribeLoadBalancerTargetGroups'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxRecords") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "autoScalingGroupName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDescribeLoadBalancerTargetGroups Source #

Create a value of DescribeLoadBalancerTargetGroups with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maxRecords:DescribeLoadBalancerTargetGroups', describeLoadBalancerTargetGroups_maxRecords - The maximum number of items to return with this call. The default value is 100 and the maximum value is 100.

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

DescribeLoadBalancerTargetGroups, describeLoadBalancerTargetGroups_autoScalingGroupName - The name of the Auto Scaling group.

Request Lenses

describeLoadBalancerTargetGroups_maxRecords :: Lens' DescribeLoadBalancerTargetGroups (Maybe Int) Source #

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

describeLoadBalancerTargetGroups_nextToken :: Lens' DescribeLoadBalancerTargetGroups (Maybe Text) Source #

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

Destructuring the Response

data DescribeLoadBalancerTargetGroupsResponse Source #

Constructors

DescribeLoadBalancerTargetGroupsResponse' 

Fields

  • loadBalancerTargetGroups :: Maybe [LoadBalancerTargetGroupState]

    Information about the target groups.

  • nextToken :: Maybe Text

    A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for the NextToken value when requesting the next set of items. This value is null when there are no more items to return.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic DescribeLoadBalancerTargetGroupsResponse Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Read DescribeLoadBalancerTargetGroupsResponse Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Show DescribeLoadBalancerTargetGroupsResponse Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

NFData DescribeLoadBalancerTargetGroupsResponse Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

Eq DescribeLoadBalancerTargetGroupsResponse Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

type Rep DescribeLoadBalancerTargetGroupsResponse Source # 
Instance details

Defined in Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups

type Rep DescribeLoadBalancerTargetGroupsResponse = D1 ('MetaData "DescribeLoadBalancerTargetGroupsResponse" "Amazonka.AutoScaling.DescribeLoadBalancerTargetGroups" "amazonka-autoscaling-2.0-IerpHfP4BA3Ir4ZL2IR1De" 'False) (C1 ('MetaCons "DescribeLoadBalancerTargetGroupsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "loadBalancerTargetGroups") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LoadBalancerTargetGroupState])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeLoadBalancerTargetGroupsResponse Source #

Create a value of DescribeLoadBalancerTargetGroupsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:loadBalancerTargetGroups:DescribeLoadBalancerTargetGroupsResponse', describeLoadBalancerTargetGroupsResponse_loadBalancerTargetGroups - Information about the target groups.

DescribeLoadBalancerTargetGroups, describeLoadBalancerTargetGroupsResponse_nextToken - A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for the NextToken value when requesting the next set of items. This value is null when there are no more items to return.

$sel:httpStatus:DescribeLoadBalancerTargetGroupsResponse', describeLoadBalancerTargetGroupsResponse_httpStatus - The response's http status code.

Response Lenses

describeLoadBalancerTargetGroupsResponse_nextToken :: Lens' DescribeLoadBalancerTargetGroupsResponse (Maybe Text) Source #

A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for the NextToken value when requesting the next set of items. This value is null when there are no more items to return.