Class CfnNetworkInsightsPathProps
Properties for defining a CfnNetworkInsightsPath
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public class CfnNetworkInsightsPathProps : Object, ICfnNetworkInsightsPathProps
Syntax (vb)
Public Class CfnNetworkInsightsPathProps
Inherits Object
Implements ICfnNetworkInsightsPathProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
CfnNetworkInsightsPathProps cfnNetworkInsightsPathProps = new CfnNetworkInsightsPathProps {
Destination = "destination",
Protocol = "protocol",
Source = "source",
// the properties below are optional
DestinationIp = "destinationIp",
DestinationPort = 123,
SourceIp = "sourceIp",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnNetworkInsightsPathProps() |
Properties
Destination | The AWS resource that is the destination of the path. |
DestinationIp | The IP address of the AWS resource that is the destination of the path. |
DestinationPort | The destination port. |
Protocol | The protocol. |
Source | The AWS resource that is the source of the path. |
SourceIp | The IP address of the AWS resource that is the source of the path. |
Tags | The tags to add to the path. |
Constructors
CfnNetworkInsightsPathProps()
public CfnNetworkInsightsPathProps()
Properties
Destination
The AWS resource that is the destination of the path.
public string Destination { get; set; }
Property Value
System.String
Remarks
DestinationIp
The IP address of the AWS resource that is the destination of the path.
public string DestinationIp { get; set; }
Property Value
System.String
Remarks
DestinationPort
The destination port.
public Nullable<double> DestinationPort { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
Protocol
The protocol.
public string Protocol { get; set; }
Property Value
System.String
Remarks
Source
The AWS resource that is the source of the path.
public string Source { get; set; }
Property Value
System.String
Remarks
SourceIp
The IP address of the AWS resource that is the source of the path.
public string SourceIp { get; set; }
Property Value
System.String