ServerGroupServerArgs

data class ServerGroupServerArgs(val port: Output<Int>, val serverIds: Output<List<String>>, val type: Output<String>? = null, val weight: Output<Int>? = null) : ConvertibleToJava<ServerGroupServerArgs>

Constructors

Link copied to clipboard
constructor(port: Output<Int>, serverIds: Output<List<String>>, type: Output<String>? = null, weight: Output<Int>? = null)

Properties

Link copied to clipboard
val port: Output<Int>

The port used by the backend server. Valid value range: 1-65535.

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

A list backend server ID (ECS instance ID).

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

Type of the backend server. Valid value ecs, eni. Default to eni.

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

Weight of the backend server. Valid value range: 0-100. Default to 100.

Functions

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