IPTrafficArgs

data class IPTrafficArgs(val destinationIps: Output<List<String>>, val destinationPorts: Output<List<String>>, val protocols: Output<List<Either<String, NetworkProtocol>>>, val sourceIps: Output<List<String>>, val sourcePorts: Output<List<String>>) : ConvertibleToJava<IPTrafficArgs>

IP traffic information.

Constructors

Link copied to clipboard
constructor(destinationIps: Output<List<String>>, destinationPorts: Output<List<String>>, protocols: Output<List<Either<String, NetworkProtocol>>>, sourceIps: Output<List<String>>, sourcePorts: Output<List<String>>)

Properties

Link copied to clipboard
val destinationIps: Output<List<String>>

List of destination IP addresses of the traffic..

Link copied to clipboard

The destination ports of the traffic.

Link copied to clipboard
val protocols: Output<List<Either<String, NetworkProtocol>>>
Link copied to clipboard
val sourceIps: Output<List<String>>

List of source IP addresses of the traffic..

Link copied to clipboard
val sourcePorts: Output<List<String>>

The source ports of the traffic.

Functions

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