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 DescribeTargetGroupAttributes operation. Describes the attributes for the specified target group.

For more information, see the following:

Inheritance Hierarchy

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

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

Syntax

C#
public class DescribeTargetGroupAttributesRequest : AmazonElasticLoadBalancingV2Request
         IAmazonWebServiceRequest

The DescribeTargetGroupAttributesRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property TargetGroupArn System.String

Gets and sets the property TargetGroupArn.

The Amazon Resource Name (ARN) of the target group.

Examples

This example describes the attributes of the specified target group.

To describe target group attributes


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.DescribeTargetGroupAttributes(new DescribeTargetGroupAttributesRequest 
{
    TargetGroupArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
});

List<TargetGroupAttribute> attributes = response.Attributes;

            

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