Interface CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty.Jsii$Proxy
Enclosing class:
CfnNetworkInsightsAnalysis

@Stability(Stable) public static interface CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty extends software.amazon.jsii.JsiiSerializable
Describes a network access control (ACL) rule.

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.*;
 AnalysisAclRuleProperty analysisAclRuleProperty = AnalysisAclRuleProperty.builder()
         .cidr("cidr")
         .egress(false)
         .portRange(PortRangeProperty.builder()
                 .from(123)
                 .to(123)
                 .build())
         .protocol("protocol")
         .ruleAction("ruleAction")
         .ruleNumber(123)
         .build();
 

See Also: