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.

Replaces an entry (rule) in a network ACL. For more information, see Network ACLs in the Amazon VPC User Guide.

Note:

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

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

Syntax

C#
public abstract ReplaceNetworkAclEntryResponse ReplaceNetworkAclEntry(
         ReplaceNetworkAclEntryRequest request
)

Parameters

request
Type: Amazon.EC2.Model.ReplaceNetworkAclEntryRequest

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

Return Value


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

Examples

This example replaces an entry for the specified network ACL. The new rule 100 allows ingress traffic from 203.0.113.12/24 on UDP port 53 (DNS) into any associated subnet.

To replace a network ACL entry


var client = new AmazonEC2Client();
var response = client.ReplaceNetworkAclEntry(new ReplaceNetworkAclEntryRequest 
{
    CidrBlock = "203.0.113.12/24",
    Egress = false,
    NetworkAclId = "acl-5fb85d36",
    PortRange = new PortRange {
        From = 53,
        To = 53
    },
    Protocol = "17",
    RuleAction = "allow",
    RuleNumber = 100
});


            

Version Information

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

See Also