IngressPortMappingArgs

data class IngressPortMappingArgs(val exposedPort: Output<Int>? = null, val external: Output<Boolean>, val targetPort: Output<Int>) : ConvertibleToJava<IngressPortMappingArgs>

Port mappings of container app ingress

Constructors

Link copied to clipboard
constructor(exposedPort: Output<Int>? = null, external: Output<Boolean>, targetPort: Output<Int>)

Properties

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

Specifies the exposed port for the target port. If not specified, it defaults to target port

Link copied to clipboard
val external: Output<Boolean>

Specifies whether the app port is accessible outside of the environment

Link copied to clipboard
val targetPort: Output<Int>

Specifies the port user's container listens on

Functions

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