ClusterSkuArgs

data class ClusterSkuArgs(val capacity: Output<Int>? = null, val name: Output<Either<String, ClusterSkuName>>? = null) : ConvertibleToJava<ClusterSkuArgs>

The SKU of the cluster. This determines the size/capacity of the cluster. Required on PUT (CreateOrUpdate) requests.

Constructors

Link copied to clipboard
constructor(capacity: Output<Int>? = null, name: Output<Either<String, ClusterSkuName>>? = null)

Properties

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

Denotes the number of streaming units the cluster can support. Valid values for this property are multiples of 36 with a minimum value of 36 and maximum value of 216. Required on PUT (CreateOrUpdate) requests.

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

Specifies the SKU name of the cluster. Required on PUT (CreateOrUpdate) requests.

Functions

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