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.

Updates the description of an egress (outbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. You can remove a description for a security group rule by omitting the description parameter in the request.

Note:

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

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

Syntax

C#
public virtual UpdateSecurityGroupRuleDescriptionsEgressResponse UpdateSecurityGroupRuleDescriptionsEgress(
         UpdateSecurityGroupRuleDescriptionsEgressRequest request
)

Parameters

request
Type: Amazon.EC2.Model.UpdateSecurityGroupRuleDescriptionsEgressRequest

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

Return Value


The response from the UpdateSecurityGroupRuleDescriptionsEgress service method, as returned by EC2.

Examples

This example updates the description for the specified security group rule.

To update an outbound security group rule description


var client = new AmazonEC2Client();
var response = client.UpdateSecurityGroupRuleDescriptionsEgress(new UpdateSecurityGroupRuleDescriptionsEgressRequest 
{
    GroupId = "sg-123abc12",
    IpPermissions = new List<IpPermission> {
        new IpPermission {
            FromPort = 80,
            IpProtocol = "tcp",
            ToPort = 80
        }
    }
});


            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also