@Stability(value=Stable)
public static interface CfnNetworkInsightsAnalysis.AnalysisSecurityGroupRuleProperty
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.*;
AnalysisSecurityGroupRuleProperty analysisSecurityGroupRuleProperty = AnalysisSecurityGroupRuleProperty.builder()
.cidr("cidr")
.direction("direction")
.portRange(PortRangeProperty.builder()
.from(123)
.to(123)
.build())
.prefixListId("prefixListId")
.protocol("protocol")
.securityGroupId("securityGroupId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnNetworkInsightsAnalysis.AnalysisSecurityGroupRuleProperty.Builder
|
static class |
CfnNetworkInsightsAnalysis.AnalysisSecurityGroupRuleProperty.Jsii$Proxy
An implementation for
CfnNetworkInsightsAnalysis.AnalysisSecurityGroupRuleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnNetworkInsightsAnalysis.AnalysisSecurityGroupRuleProperty.Builder |
builder() |
default String |
getCidr()
The IPv4 address range, in CIDR notation.
|
default String |
getDirection()
The direction.
|
default Object |
getPortRange()
The port range.
|
default String |
getPrefixListId()
The prefix list ID.
|
default String |
getProtocol()
The protocol name.
|
default String |
getSecurityGroupId()
The security group ID.
|
@Stability(value=Stable) @Nullable default String getCidr()
@Stability(value=Stable) @Nullable default String getDirection()
@Stability(value=Stable) @Nullable default Object getPortRange()
@Stability(value=Stable) @Nullable default String getPrefixListId()
@Stability(value=Stable) @Nullable default String getProtocol()
@Stability(value=Stable) @Nullable default String getSecurityGroupId()
@Stability(value=Stable) static CfnNetworkInsightsAnalysis.AnalysisSecurityGroupRuleProperty.Builder builder()
Copyright © 2022. All rights reserved.