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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnNetworkInsightsAnalysis.AnalysisAclRuleProperty
static final class
An implementation forCfnNetworkInsightsAnalysis.AnalysisAclRuleProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
getCidr()
The IPv4 address range, in CIDR notation.default Object
Indicates whether the rule is an outbound rule.default Object
The range of ports.default String
The protocol.default String
Indicates whether to allow or deny traffic that matches the rule.default Number
The rule number.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCidr
The IPv4 address range, in CIDR notation. -
getEgress
Indicates whether the rule is an outbound rule. -
getPortRange
The range of ports. -
getProtocol
The protocol. -
getRuleAction
Indicates whether to allow or deny traffic that matches the rule. -
getRuleNumber
The rule number. -
builder
-