NamedPortArgs

data class NamedPortArgs(val name: Output<String>? = null, val port: Output<Int>? = null) : ConvertibleToJava<NamedPortArgs>

The named port. For example: <"http", 80>.

Constructors

Link copied to clipboard
fun NamedPortArgs(name: Output<String>? = null, port: Output<Int>? = null)

Functions

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

Properties

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

The name for this named port. The name must be 1-63 characters long, and comply with RFC1035.

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

The port number, which can be a value between 1 and 65535.