interface CfnTrafficMirrorFilterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTrafficMirrorFilterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTrafficMirrorFilterMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTrafficMirrorFilterMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTrafficMirrorFilterMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnTrafficMirrorFilterMixinProps: ec2.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