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.

Modifies the specified attributes of the specified target group.

Note:

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

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

Syntax

C#
public virtual ModifyTargetGroupAttributesResponse ModifyTargetGroupAttributes(
         ModifyTargetGroupAttributesRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.ModifyTargetGroupAttributesRequest

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

Return Value


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

Exceptions

ExceptionCondition
InvalidConfigurationRequestException The requested configuration is not valid.
TargetGroupNotFoundException The specified target group does not exist.

Examples

This example sets the deregistration delay timeout to the specified value for the specified target group.

To modify the deregistration delay timeout


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.ModifyTargetGroupAttributes(new ModifyTargetGroupAttributesRequest 
{
    Attributes = new List<TargetGroupAttribute> {
        new TargetGroupAttribute {
            Key = "deregistration_delay.timeout_seconds",
            Value = "600"
        }
    },
    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