@Stability(value=Stable)
public static interface CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty.Builder
A builder for
CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty |
static class |
CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty.Jsii$Proxy
An implementation for
CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty.Builder |
builder() |
default String |
getCidr()
The IPv4 address range, in CIDR notation.
|
default Object |
getEgress()
Indicates whether the rule is an outbound rule.
|
default Object |
getPortRange()
The range of ports.
|
default String |
getProtocol()
The protocol.
|
default String |
getRuleAction()
Indicates whether to allow or deny traffic that matches the rule.
|
default Number |
getRuleNumber()
The rule number.
|
@Stability(value=Stable) @Nullable default String getCidr()
@Stability(value=Stable) @Nullable default Object getEgress()
@Stability(value=Stable) @Nullable default Object getPortRange()
@Stability(value=Stable) @Nullable default String getProtocol()
@Stability(value=Stable) @Nullable default String getRuleAction()
@Stability(value=Stable) @Nullable default Number getRuleNumber()
@Stability(value=Stable) static CfnNetworkInsightsAnalysis.AnalysisAclRuleProperty.Builder builder()
Copyright © 2022. All rights reserved.