AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DescribeTargetGroups operation. Describes the specified target groups or all of your target groups. By default, all target groups are described. Alternatively, you can specify one of the following to filter the results: the ARN of the load balancer, the names of one or more target groups, or the ARNs of one or more target groups.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElasticLoadBalancingV2.AmazonElasticLoadBalancingV2Request
      Amazon.ElasticLoadBalancingV2.Model.DescribeTargetGroupsRequest

Namespace: Amazon.ElasticLoadBalancingV2.Model
Assembly: AWSSDK.ElasticLoadBalancingV2.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeTargetGroupsRequest : AmazonElasticLoadBalancingV2Request
         IAmazonWebServiceRequest

The DescribeTargetGroupsRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property LoadBalancerArn System.String

Gets and sets the property LoadBalancerArn.

The Amazon Resource Name (ARN) of the load balancer.

Public Property Marker System.String

Gets and sets the property Marker.

The marker for the next set of results. (You received this marker from a previous call.)

Public Property Names System.Collections.Generic.List<System.String>

Gets and sets the property Names.

The names of the target groups.

Public Property PageSize System.Int32

Gets and sets the property PageSize.

The maximum number of results to return with this call.

Public Property TargetGroupArns System.Collections.Generic.List<System.String>

Gets and sets the property TargetGroupArns.

The Amazon Resource Names (ARN) of the target groups.

Examples

This example describes the specified target group.

To describe a target group


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.DescribeTargetGroups(new DescribeTargetGroupsRequest 
{
    TargetGroupArns = new List<string> {
        "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
    }
});

List<TargetGroup> targetGroups = response.TargetGroups;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5