Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TrafficMirrorSession

import type { TrafficMirrorSession } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes a Traffic Mirror session.

interface TrafficMirrorSession {
Description?: string | null;
NetworkInterfaceId?: string | null;
OwnerId?: string | null;
PacketLength?: number | null;
SessionNumber?: number | null;
Tags: Tag[];
TrafficMirrorFilterId?: string | null;
TrafficMirrorSessionId?: string | null;
TrafficMirrorTargetId?: string | null;
VirtualNetworkId?: number | null;
}

§Properties

§
Description?: string | null
[src]

The description of the Traffic Mirror session.

§
NetworkInterfaceId?: string | null
[src]

The ID of the Traffic Mirror session's network interface.

§
OwnerId?: string | null
[src]

The ID of the account that owns the Traffic Mirror session.

§
PacketLength?: number | null
[src]

The number of bytes in each packet to mirror. These are the bytes after the VXLAN header. To mirror a subset, set this to the length (in bytes) 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. Do not specify this parameter when you want to mirror the entire packet

§
SessionNumber?: number | null
[src]

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: Tag[]
[src]

The tags assigned to the Traffic Mirror session.

§
TrafficMirrorFilterId?: string | null
[src]

The ID of the Traffic Mirror filter.

§
TrafficMirrorSessionId?: string | null
[src]

The ID for the Traffic Mirror session.

§
TrafficMirrorTargetId?: string | null
[src]

The ID of the Traffic Mirror target.

§
VirtualNetworkId?: number | null
[src]

The virtual network ID associated with the Traffic Mirror session.