Packet Mirroring Filter Args
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
constructor(cidrRanges: Output<List<String>>? = null, direction: Output<PacketMirroringFilterDirection>? = null, ipProtocols: Output<List<String>>? = null)
Properties
Link copied to clipboard
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
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.