interface CfnNetworkInsightsAnalysisProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnNetworkInsightsAnalysisProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAnalysisProps |
Java | software.amazon.awscdk.services.ec2.CfnNetworkInsightsAnalysisProps |
Python | aws_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
Name | Type | Description |
---|---|---|
network | string | The ID of the path. |
additional | string[] | The member accounts that contain resources that the path can traverse. |
filter | string[] | The Amazon Resource Names (ARN) of the resources that the path must traverse. |
tags? | Cfn [] | 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:
Cfn
[]
(optional)
The tags to apply.