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
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
FilterInArns
The Amazon Resource Names (ARN) of the resources that the path must traverse.
string[]? FilterInArns { get; }
Property Value
string[]
Remarks
FilterOutArns
The Amazon Resource Names (ARN) of the resources that the path must ignore.
string[]? FilterOutArns { get; }
Property Value
string[]
Remarks
NetworkInsightsPathId
The ID of the path.
string NetworkInsightsPathId { get; }