Interface NetworkAclEntryProps

All Superinterfaces:
CommonNetworkAclEntryOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
NetworkAclEntryProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:28.947Z") @Stability(Stable) public interface NetworkAclEntryProps extends software.amazon.jsii.JsiiSerializable, CommonNetworkAclEntryOptions
Properties to create NetworkAclEntry.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 AclCidr aclCidr;
 AclTraffic aclTraffic;
 NetworkAcl networkAcl;
 NetworkAclEntryProps networkAclEntryProps = NetworkAclEntryProps.builder()
         .cidr(aclCidr)
         .networkAcl(networkAcl)
         .ruleNumber(123)
         .traffic(aclTraffic)
         // the properties below are optional
         .direction(TrafficDirection.EGRESS)
         .networkAclEntryName("networkAclEntryName")
         .ruleAction(Action.ALLOW)
         .build();