com.pulumi.aws.finspace.kotlin.inputs.KxClusterDatabaseCacheConfigurationArgs.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.inputs
import com.pulumi.aws.finspace.inputs.KxClusterDatabaseCacheConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property cacheType Type of disk cache.
* @property dbPaths Paths within the database to cache.
*/
public data class KxClusterDatabaseCacheConfigurationArgs(
public val cacheType: Output,
public val dbPaths: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.finspace.inputs.KxClusterDatabaseCacheConfigurationArgs =
com.pulumi.aws.finspace.inputs.KxClusterDatabaseCacheConfigurationArgs.builder()
.cacheType(cacheType.applyValue({ args0 -> args0 }))
.dbPaths(dbPaths?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [KxClusterDatabaseCacheConfigurationArgs].
*/
@PulumiTagMarker
public class KxClusterDatabaseCacheConfigurationArgsBuilder internal constructor() {
private var cacheType: Output? = null
private var dbPaths: Output>? = null
/**
* @param value Type of disk cache.
*/
@JvmName("xydqdppxspmggiva")
public suspend fun cacheType(`value`: Output) {
this.cacheType = value
}
/**
* @param value Paths within the database to cache.
*/
@JvmName("jnyfyhutqpdxrsfb")
public suspend fun dbPaths(`value`: Output>) {
this.dbPaths = value
}
@JvmName("fkamhoiwdvdqwodu")
public suspend fun dbPaths(vararg values: Output) {
this.dbPaths = Output.all(values.asList())
}
/**
* @param values Paths within the database to cache.
*/
@JvmName("rptqacorlyqoglgr")
public suspend fun dbPaths(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy