@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-17T17:31:14.419Z")
public interface CfnNetworkInsightsPathProps
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.*; CfnNetworkInsightsPathProps cfnNetworkInsightsPathProps = CfnNetworkInsightsPathProps.builder() .destination("destination") .protocol("protocol") .source("source") // the properties below are optional .destinationIp("destinationIp") .destinationPort(123) .sourceIp("sourceIp") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnNetworkInsightsPathProps.Builder
A builder for
CfnNetworkInsightsPathProps |
static class |
CfnNetworkInsightsPathProps.Jsii$Proxy
An implementation for
CfnNetworkInsightsPathProps |
Modifier and Type | Method and Description |
---|---|
static CfnNetworkInsightsPathProps.Builder |
builder() |
java.lang.String |
getDestination()
The AWS resource that is the destination of the path.
|
default java.lang.String |
getDestinationIp()
The IP address of the AWS resource that is the destination of the path.
|
default java.lang.Number |
getDestinationPort()
The destination port.
|
java.lang.String |
getProtocol()
The protocol.
|
java.lang.String |
getSource()
The AWS resource that is the source of the path.
|
default java.lang.String |
getSourceIp()
The IP address of the AWS resource that is the source of the path.
|
default java.util.List<CfnTag> |
getTags()
The tags to add to the path.
|
java.lang.String getDestination()
java.lang.String getProtocol()
java.lang.String getSource()
default java.lang.String getDestinationIp()
default java.lang.Number getDestinationPort()
default java.lang.String getSourceIp()
default java.util.List<CfnTag> getTags()
static CfnNetworkInsightsPathProps.Builder builder()