deleteNetworkAclEntry   
  inline suspend fun Ec2Client.deleteNetworkAclEntry(crossinline block: DeleteNetworkAclEntryRequest.Builder.() -> Unit): DeleteNetworkAclEntryResponse
Deletes the specified ingress or egress entry (rule) from the specified network ACL.
Samples
fun main() { 
   //sampleStart 
   // This example deletes ingress rule number 100 from the specified network ACL.
ec2Client.deleteNetworkAclEntry {
    networkAclId = "acl-5fb85d36"
    ruleNumber = 100
    egress = true
} 
   //sampleEnd
}