com.pulumi.aws.finspace.kotlin.outputs.KxClusterCapacityConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.finspace.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property nodeCount Number of instances running in a cluster. Must be at least 1 and at most 5.
* @property nodeType Determines the hardware of the host computer used for your cluster instance. Each node type offers different memory and storage capabilities. Choose a node type based on the requirements of the application or software that you plan to run on your instance.
* You can only specify one of the following values:
* * kx.s.large – The node type with a configuration of 12 GiB memory and 2 vCPUs.
* * kx.s.xlarge – The node type with a configuration of 27 GiB memory and 4 vCPUs.
* * kx.s.2xlarge – The node type with a configuration of 54 GiB memory and 8 vCPUs.
* * kx.s.4xlarge – The node type with a configuration of 108 GiB memory and 16 vCPUs.
* * kx.s.8xlarge – The node type with a configuration of 216 GiB memory and 32 vCPUs.
* * kx.s.16xlarge – The node type with a configuration of 432 GiB memory and 64 vCPUs.
* * kx.s.32xlarge – The node type with a configuration of 864 GiB memory and 128 vCPUs.
*/
public data class KxClusterCapacityConfiguration(
public val nodeCount: Int,
public val nodeType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.finspace.outputs.KxClusterCapacityConfiguration): KxClusterCapacityConfiguration = KxClusterCapacityConfiguration(
nodeCount = javaType.nodeCount(),
nodeType = javaType.nodeType(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy