interface CfnTrafficMirrorSessionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTrafficMirrorSessionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTrafficMirrorSessionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTrafficMirrorSessionMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTrafficMirrorSessionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTrafficMirrorSessionMixinProps |
Properties for CfnTrafficMirrorSessionPropsMixin.
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 cfnTrafficMirrorSessionMixinProps: ec2_mixins.CfnTrafficMirrorSessionMixinProps = {
description: 'description',
networkInterfaceId: 'networkInterfaceId',
ownerId: 'ownerId',
packetLength: 123,
sessionNumber: 123,
tags: [{
key: 'key',
value: 'value',
}],
trafficMirrorFilterId: 'trafficMirrorFilterId',
trafficMirrorTargetId: 'trafficMirrorTargetId',
virtualNetworkId: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the Traffic Mirror session. |
| network | string | The ID of the source network interface. |
| owner | string | The ID of the account that owns the Traffic Mirror session. |
| packet | number | The number of bytes in each packet to mirror. |
| session | number | The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. |
| tags? | Cfn[] | The tags to assign to a Traffic Mirror session. |
| traffic | string | The ID of the Traffic Mirror filter. |
| traffic | string | The ID of the Traffic Mirror target. |
| virtual | number | The VXLAN ID for the Traffic Mirror session. |
description?
Type:
string
(optional)
The description of the Traffic Mirror session.
networkInterfaceId?
Type:
string
(optional)
The ID of the source network interface.
ownerId?
Type:
string
(optional)
The ID of the account that owns the Traffic Mirror session.
packetLength?
Type:
number
(optional)
The number of bytes in each packet to mirror.
These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target.
If you do not want to mirror the entire packet, use the PacketLength parameter to specify the number of bytes in each packet to mirror.
For sessions with Network Load Balancer (NLB) Traffic Mirror targets the default PacketLength will be set to 8500. Valid values are 1-8500. Setting a PacketLength greater than 8500 will result in an error response.
sessionNumber?
Type:
number
(optional)
The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions.
The first session with a matching filter is the one that mirrors the packets.
Valid values are 1-32766.
tags?
Type:
Cfn[]
(optional)
The tags to assign to a Traffic Mirror session.
trafficMirrorFilterId?
Type:
string
(optional)
The ID of the Traffic Mirror filter.
trafficMirrorTargetId?
Type:
string
(optional)
The ID of the Traffic Mirror target.
virtualNetworkId?
Type:
number
(optional)
The VXLAN ID for the Traffic Mirror session.
For more information about the VXLAN protocol, see RFC 7348 . If you do not specify a VirtualNetworkId , an account-wide unique ID is chosen at random.

.NET
Go
Java
Python
TypeScript