PortRangeArgs

data class PortRangeArgs(val portEnd: Output<Int>? = null, val portStart: Output<Int>? = null, val protocol: Output<Either<String, Protocol>>? = null) : ConvertibleToJava<PortRangeArgs>

The port range.

Constructors

Link copied to clipboard
constructor(portEnd: Output<Int>? = null, portStart: Output<Int>? = null, protocol: Output<Either<String, Protocol>>? = null)

Properties

Link copied to clipboard
val portEnd: Output<Int>? = null

The maximum port that is included in the range. It should be ranged from 1 to 65535, and be greater than or equal to portStart.

Link copied to clipboard
val portStart: Output<Int>? = null

The minimum port that is included in the range. It should be ranged from 1 to 65535, and be less than or equal to portEnd.

Link copied to clipboard
val protocol: Output<Either<String, Protocol>>? = null

The network protocol of the port.

Functions

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