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.

Associates the specified security groups with the specified Application Load Balancer or Network Load Balancer. The specified security groups override the previously associated security groups.

You can't perform this operation on a Network Load Balancer unless you specified a security group for the load balancer when you created it.

You can't associate a security group with a Gateway Load Balancer.

Note:

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

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

Syntax

C#
public virtual SetSecurityGroupsResponse SetSecurityGroups(
         SetSecurityGroupsRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.SetSecurityGroupsRequest

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

Return Value


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

Exceptions

ExceptionCondition
InvalidConfigurationRequestException The requested configuration is not valid.
InvalidSecurityGroupException The specified security group does not exist.
LoadBalancerNotFoundException The specified load balancer does not exist.

Examples

This example associates the specified security group with the specified load balancer.

To associate a security group with a load balancer


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.SetSecurityGroups(new SetSecurityGroupsRequest 
{
    LoadBalancerArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
    SecurityGroups = new List<string> {
        "sg-5943793c"
    }
});

List<string> securityGroupIds = response.SecurityGroupIds;

            

Version Information

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

See Also