interface CfnNetworkInsightsAnalysisMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInsightsAnalysisMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInsightsAnalysisMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInsightsAnalysisMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsAnalysisMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInsightsAnalysisMixinProps |
Properties for CfnNetworkInsightsAnalysisPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnNetworkInsightsAnalysisMixinProps: ec2_mixins.CfnNetworkInsightsAnalysisMixinProps = {
additionalAccounts: ['additionalAccounts'],
filterInArns: ['filterInArns'],
filterOutArns: ['filterOutArns'],
networkInsightsPathId: 'networkInsightsPathId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| filter | string[] | The Amazon Resource Names (ARN) of the resources that the path must ignore. |
| network | string | The ID of the path. |
| tags? | Cfn[] | The tags to apply. |
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.
filterOutArns?
Type:
string[]
(optional)
The Amazon Resource Names (ARN) of the resources that the path must ignore.
networkInsightsPathId?
Type:
string
(optional)
The ID of the path.
tags?
Type:
Cfn[]
(optional)
The tags to apply.

.NET
Go
Java
Python
TypeScript