interface PathFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInsightsPathPropsMixin.PathFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInsightsPathPropsMixin_PathFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInsightsPathPropsMixin.PathFilterProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsPathPropsMixin.PathFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInsightsPathPropsMixin » PathFilterProperty |
Describes a set of filters for a path analysis.
Use path filters to scope the analysis when there can be multiple resulting paths.
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 pathFilterProperty: ec2_mixins.CfnNetworkInsightsPathPropsMixin.PathFilterProperty = {
destinationAddress: 'destinationAddress',
destinationPortRange: {
fromPort: 123,
toPort: 123,
},
sourceAddress: 'sourceAddress',
sourcePortRange: {
fromPort: 123,
toPort: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination IPv4 address. |
| destination | IResolvable | Filter | The destination port range. |
| source | string | The source IPv4 address. |
| source | IResolvable | Filter | The source port range. |
destinationAddress?
Type:
string
(optional)
The destination IPv4 address.
destinationPortRange?
Type:
IResolvable | Filter
(optional)
The destination port range.
sourceAddress?
Type:
string
(optional)
The source IPv4 address.
sourcePortRange?
Type:
IResolvable | Filter
(optional)
The source port range.

.NET
Go
Java
Python
TypeScript