Show / Hide Table of Contents

Interface ICfnNetworkInsightsAnalysisProps

Properties for defining a CfnNetworkInsightsAnalysis.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnNetworkInsightsAnalysisProps
Syntax (vb)
Public Interface ICfnNetworkInsightsAnalysisProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.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;

             var cfnNetworkInsightsAnalysisProps = new CfnNetworkInsightsAnalysisProps {
                 NetworkInsightsPathId = "networkInsightsPathId",

                 // the properties below are optional
                 AdditionalAccounts = new [] { "additionalAccounts" },
                 FilterInArns = new [] { "filterInArns" },
                 FilterOutArns = new [] { "filterOutArns" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

AdditionalAccounts

The member accounts that contain resources that the path can traverse.

FilterInArns

The Amazon Resource Names (ARN) of the resources that the path must traverse.

FilterOutArns

The Amazon Resource Names (ARN) of the resources that the path must ignore.

NetworkInsightsPathId

The ID of the path.

Tags

The tags to apply.

Properties

AdditionalAccounts

The member accounts that contain resources that the path can traverse.

string[]? AdditionalAccounts { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-additionalaccounts

FilterInArns

The Amazon Resource Names (ARN) of the resources that the path must traverse.

string[]? FilterInArns { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-filterinarns

FilterOutArns

The Amazon Resource Names (ARN) of the resources that the path must ignore.

string[]? FilterOutArns { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-filteroutarns

NetworkInsightsPathId

The ID of the path.

string NetworkInsightsPathId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinsightsanalysis.html#cfn-ec2-networkinsightsanalysis-networkinsightspathid

Tags

The tags to apply.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX