SkuArgs

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

SKU parameters supplied to the create RedisEnterprise operation.

Constructors

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

Properties

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

The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.

Link copied to clipboard
val name: Output<Either<String, SkuName>>

The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)

Functions

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