All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.finspace.kotlin.inputs.KxClusterSavedownStorageConfigurationArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.finspace.kotlin.inputs

import com.pulumi.aws.finspace.inputs.KxClusterSavedownStorageConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property size Size of temporary storage in gigabytes. Must be between 10 and 16000.
 * @property type Type of writeable storage space for temporarily storing your savedown data. The valid values are:
 * * SDS01 - This type represents 3000 IOPS and io2 ebs volume type.
 * @property volumeName The name of the kdb volume that you want to use as writeable save-down storage for clusters.
 */
public data class KxClusterSavedownStorageConfigurationArgs(
    public val size: Output? = null,
    public val type: Output? = null,
    public val volumeName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.finspace.inputs.KxClusterSavedownStorageConfigurationArgs =
        com.pulumi.aws.finspace.inputs.KxClusterSavedownStorageConfigurationArgs.builder()
            .size(size?.applyValue({ args0 -> args0 }))
            .type(type?.applyValue({ args0 -> args0 }))
            .volumeName(volumeName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [KxClusterSavedownStorageConfigurationArgs].
 */
@PulumiTagMarker
public class KxClusterSavedownStorageConfigurationArgsBuilder internal constructor() {
    private var size: Output? = null

    private var type: Output? = null

    private var volumeName: Output? = null

    /**
     * @param value Size of temporary storage in gigabytes. Must be between 10 and 16000.
     */
    @JvmName("vcuuplhyiharblqe")
    public suspend fun size(`value`: Output) {
        this.size = value
    }

    /**
     * @param value Type of writeable storage space for temporarily storing your savedown data. The valid values are:
     * * SDS01 - This type represents 3000 IOPS and io2 ebs volume type.
     */
    @JvmName("xrdnqjbaakutkvvr")
    public suspend fun type(`value`: Output) {
        this.type = value
    }

    /**
     * @param value The name of the kdb volume that you want to use as writeable save-down storage for clusters.
     */
    @JvmName("mycyahejyhdsckst")
    public suspend fun volumeName(`value`: Output) {
        this.volumeName = value
    }

    /**
     * @param value Size of temporary storage in gigabytes. Must be between 10 and 16000.
     */
    @JvmName("mafhvwsnpvsxgxkb")
    public suspend fun size(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.size = mapped
    }

    /**
     * @param value Type of writeable storage space for temporarily storing your savedown data. The valid values are:
     * * SDS01 - This type represents 3000 IOPS and io2 ebs volume type.
     */
    @JvmName("octegvvvfsufckfc")
    public suspend fun type(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.type = mapped
    }

    /**
     * @param value The name of the kdb volume that you want to use as writeable save-down storage for clusters.
     */
    @JvmName("vmtikofntooifbgh")
    public suspend fun volumeName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.volumeName = mapped
    }

    internal fun build(): KxClusterSavedownStorageConfigurationArgs =
        KxClusterSavedownStorageConfigurationArgs(
            size = size,
            type = type,
            volumeName = volumeName,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy