Show / Hide Table of Contents

Class CfnNetworkInsightsPathPropsMixin

Specifies a path to analyze for reachability.

Inheritance
object
Mixin
CfnNetworkInsightsPathPropsMixin
Implements
IMixin
Inherited Members
Mixin.IsMixin(object)
Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnNetworkInsightsPathPropsMixin : Mixin, IMixin
Syntax (vb)
Public Class CfnNetworkInsightsPathPropsMixin Inherits Mixin Implements IMixin
Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins;

             var cfnNetworkInsightsPathPropsMixin = new CfnNetworkInsightsPathPropsMixin(new CfnNetworkInsightsPathMixinProps {
                 Destination = "destination",
                 DestinationIp = "destinationIp",
                 DestinationPort = 123,
                 FilterAtDestination = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 FilterAtSource = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 Protocol = "protocol",
                 Source = "source",
                 SourceIp = "sourceIp",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Synopsis

Constructors

CfnNetworkInsightsPathPropsMixin(ICfnNetworkInsightsPathMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::EC2::NetworkInsightsPath.

Properties

CFN_PROPERTY_KEYS

Specifies a path to analyze for reachability.

Props

Specifies a path to analyze for reachability.

Strategy

Specifies a path to analyze for reachability.

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

Supports(IConstruct)

Check if this mixin supports the given construct.

Constructors

CfnNetworkInsightsPathPropsMixin(ICfnNetworkInsightsPathMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::EC2::NetworkInsightsPath.

public CfnNetworkInsightsPathPropsMixin(ICfnNetworkInsightsPathMixinProps props, ICfnPropertyMixinOptions? options = null)
Parameters
props ICfnNetworkInsightsPathMixinProps

L1 properties to apply.

options ICfnPropertyMixinOptions

Mixin options.

Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

ExampleMetadata: fixture=_generated

Properties

CFN_PROPERTY_KEYS

Specifies a path to analyze for reachability.

protected static string[] CFN_PROPERTY_KEYS { get; }
Property Value

string[]

Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins;

             var cfnNetworkInsightsPathPropsMixin = new CfnNetworkInsightsPathPropsMixin(new CfnNetworkInsightsPathMixinProps {
                 Destination = "destination",
                 DestinationIp = "destinationIp",
                 DestinationPort = 123,
                 FilterAtDestination = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 FilterAtSource = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 Protocol = "protocol",
                 Source = "source",
                 SourceIp = "sourceIp",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Props

Specifies a path to analyze for reachability.

protected virtual ICfnNetworkInsightsPathMixinProps Props { get; }
Property Value

ICfnNetworkInsightsPathMixinProps

Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins;

             var cfnNetworkInsightsPathPropsMixin = new CfnNetworkInsightsPathPropsMixin(new CfnNetworkInsightsPathMixinProps {
                 Destination = "destination",
                 DestinationIp = "destinationIp",
                 DestinationPort = 123,
                 FilterAtDestination = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 FilterAtSource = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 Protocol = "protocol",
                 Source = "source",
                 SourceIp = "sourceIp",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Strategy

Specifies a path to analyze for reachability.

protected virtual PropertyMergeStrategy Strategy { get; }
Property Value

PropertyMergeStrategy

Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

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.Mixins.Preview.Mixins;
             using Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins;

             var cfnNetworkInsightsPathPropsMixin = new CfnNetworkInsightsPathPropsMixin(new CfnNetworkInsightsPathMixinProps {
                 Destination = "destination",
                 DestinationIp = "destinationIp",
                 DestinationPort = 123,
                 FilterAtDestination = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 FilterAtSource = new PathFilterProperty {
                     DestinationAddress = "destinationAddress",
                     DestinationPortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     },
                     SourceAddress = "sourceAddress",
                     SourcePortRange = new FilterPortRangeProperty {
                         FromPort = 123,
                         ToPort = 123
                     }
                 },
                 Protocol = "protocol",
                 Source = "source",
                 SourceIp = "sourceIp",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = PropertyMergeStrategy.OVERRIDE
             });

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

public override IConstruct ApplyTo(IConstruct construct)
Parameters
construct IConstruct
Returns

IConstruct

Overrides
Mixin.ApplyTo(IConstruct)
Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

ExampleMetadata: fixture=_generated

Supports(IConstruct)

Check if this mixin supports the given construct.

public override bool Supports(IConstruct construct)
Parameters
construct IConstruct
Returns

bool

Overrides
Mixin.Supports(IConstruct)
Remarks

VPC Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer User Guide .

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

CloudformationResource: AWS::EC2::NetworkInsightsPath

Mixin: true

ExampleMetadata: fixture=_generated

Implements

IMixin
Back to top Generated by DocFX