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.
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
public abstract ReplaceNetworkAclEntryResponse ReplaceNetworkAclEntry( ReplaceNetworkAclEntryRequest request )
Container for the necessary parameters to execute the ReplaceNetworkAclEntry service method.
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.
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
});
.NET Framework:
Supported in: 4.7.2 and newer