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.

Describes the attributes for the specified target group.

For more information, see the following:

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeTargetGroupAttributesAsync.

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

Syntax

C#
public abstract DescribeTargetGroupAttributesResponse DescribeTargetGroupAttributes(
         DescribeTargetGroupAttributesRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.DescribeTargetGroupAttributesRequest

Container for the necessary parameters to execute the DescribeTargetGroupAttributes service method.

Return Value


The response from the DescribeTargetGroupAttributes service method, as returned by ElasticLoadBalancingV2.

Exceptions

ExceptionCondition
TargetGroupNotFoundException The specified target group does not exist.

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 Framework:
Supported in: 4.5, 4.0, 3.5

See Also