Show / Hide Table of Contents

Class CfnNetworkInsightsPathProps

Properties for defining a CfnNetworkInsightsPath.

Inheritance
System.Object
CfnNetworkInsightsPathProps
Implements
ICfnNetworkInsightsPathProps
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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-destination

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-destinationip

DestinationPort

The destination port.

public Nullable<double> DestinationPort { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-destinationport

Protocol

The protocol.

public string Protocol { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-protocol

Source

The AWS resource that is the source of the path.

public string Source { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-source

SourceIp

The IP address of the AWS resource that is the source of the path.

public string SourceIp { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-sourceip

Tags

The tags to add to the path.

public ICfnTag[] Tags { get; set; }
Property Value

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightspath.html#cfn-ec2-networkinsightspath-tags

Implements

ICfnNetworkInsightsPathProps
Back to top Generated by DocFX