@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.269Z") @Stability(value=Stable) public interface CfnNetworkInsightsPathProps 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.*;
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() |
String |
getDestination()
The AWS resource that is the destination of the path.
|
default String |
getDestinationIp()
The IP address of the AWS resource that is the destination of the path.
|
default Number |
getDestinationPort()
The destination port.
|
String |
getProtocol()
The protocol.
|
String |
getSource()
The AWS resource that is the source of the path.
|
default String |
getSourceIp()
The IP address of the AWS resource that is the source of the path.
|
default List<CfnTag> |
getTags()
The tags to add to the path.
|
@Stability(value=Stable) @NotNull String getDestination()
@Stability(value=Stable) @NotNull String getProtocol()
@Stability(value=Stable) @NotNull String getSource()
@Stability(value=Stable) @Nullable default String getDestinationIp()
@Stability(value=Stable) @Nullable default Number getDestinationPort()
@Stability(value=Stable) @Nullable default String getSourceIp()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnNetworkInsightsPathProps.Builder builder()
Copyright © 2022. All rights reserved.