PacketMirroringFilterArgs

data class PacketMirroringFilterArgs(val cidrRanges: Output<List<String>>? = null, val direction: Output<PacketMirroringFilterDirection>? = null, val ipProtocols: Output<List<String>>? = null) : ConvertibleToJava<PacketMirroringFilterArgs>

Constructors

Link copied to clipboard
fun PacketMirroringFilterArgs(cidrRanges: Output<List<String>>? = null, direction: Output<PacketMirroringFilterDirection>? = null, ipProtocols: Output<List<String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): PacketMirroringFilterArgs

Properties

Link copied to clipboard
val cidrRanges: Output<List<String>>? = null

IP CIDR ranges that apply as filter on the source (ingress) or destination (egress) IP in the IP header. Only IPv4 is supported. If no ranges are specified, all traffic that matches the specified IPProtocols is mirrored. If neither cidrRanges nor IPProtocols is specified, all traffic is mirrored.

Link copied to clipboard

Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default is BOTH.

Link copied to clipboard
val ipProtocols: Output<List<String>>? = null

Protocols that apply as filter on mirrored traffic. If no protocols are specified, all traffic that matches the specified CIDR ranges is mirrored. If neither cidrRanges nor IPProtocols is specified, all traffic is mirrored.