interface CfnTrafficMirrorFilterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTrafficMirrorFilterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTrafficMirrorFilterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTrafficMirrorFilterMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTrafficMirrorFilterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTrafficMirrorFilterMixinProps |
Properties for CfnTrafficMirrorFilterPropsMixin.
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 cfnTrafficMirrorFilterMixinProps: ec2_mixins.CfnTrafficMirrorFilterMixinProps = {
description: 'description',
networkServices: ['networkServices'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the Traffic Mirror filter. |
| network | string[] | The network service traffic that is associated with the Traffic Mirror filter. |
| tags? | Cfn[] | The tags to assign to a Traffic Mirror filter. |
description?
Type:
string
(optional)
The description of the Traffic Mirror filter.
networkServices?
Type:
string[]
(optional)
The network service traffic that is associated with the Traffic Mirror filter.
Valid values are amazon-dns .
tags?
Type:
Cfn[]
(optional)
The tags to assign to a Traffic Mirror filter.

.NET
Go
Java
Python
TypeScript