aws-cdk-lib.aws_ec2.CfnNetworkInsightsAnalysisProps

interface CfnNetworkInsightsAnalysisProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnNetworkInsightsAnalysisProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAnalysisProps
Javasoftware.amazon.awscdk.services.ec2.CfnNetworkInsightsAnalysisProps
Pythonaws_cdk.aws_ec2.CfnNetworkInsightsAnalysisProps
TypeScript aws-cdk-lib » aws_ec2 » CfnNetworkInsightsAnalysisProps

Properties for defining a CfnNetworkInsightsAnalysis.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnNetworkInsightsAnalysisProps: ec2.CfnNetworkInsightsAnalysisProps = {
  networkInsightsPathId: 'networkInsightsPathId',

  // the properties below are optional
  additionalAccounts: ['additionalAccounts'],
  filterInArns: ['filterInArns'],
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
networkInsightsPathIdstringThe ID of the path.
additionalAccounts?string[]The member accounts that contain resources that the path can traverse.
filterInArns?string[]The Amazon Resource Names (ARN) of the resources that the path must traverse.
tags?CfnTag[]The tags to apply.

networkInsightsPathId

Type: string

The ID of the path.


additionalAccounts?

Type: string[] (optional)

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


filterInArns?

Type: string[] (optional)

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


tags?

Type: CfnTag[] (optional)

The tags to apply.