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

com.pulumi.aws.fsx.kotlin.inputs.FileCacheLustreConfigurationLogConfigurationArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.fsx.kotlin.inputs

import com.pulumi.aws.fsx.inputs.FileCacheLustreConfigurationLogConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property destination
 * @property level
 */
public data class FileCacheLustreConfigurationLogConfigurationArgs(
    public val destination: Output? = null,
    public val level: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.fsx.inputs.FileCacheLustreConfigurationLogConfigurationArgs = com.pulumi.aws.fsx.inputs.FileCacheLustreConfigurationLogConfigurationArgs.builder()
        .destination(destination?.applyValue({ args0 -> args0 }))
        .level(level?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FileCacheLustreConfigurationLogConfigurationArgs].
 */
@PulumiTagMarker
public class FileCacheLustreConfigurationLogConfigurationArgsBuilder internal constructor() {
    private var destination: Output? = null

    private var level: Output? = null

    /**
     * @param value
     */
    @JvmName("cljsngkqhapbefwo")
    public suspend fun destination(`value`: Output) {
        this.destination = value
    }

    /**
     * @param value
     */
    @JvmName("ustarvyvviyrdewi")
    public suspend fun level(`value`: Output) {
        this.level = value
    }

    /**
     * @param value
     */
    @JvmName("bnitnmkapolixbhy")
    public suspend fun destination(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.destination = mapped
    }

    /**
     * @param value
     */
    @JvmName("udstedsyeokioylv")
    public suspend fun level(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.level = mapped
    }

    internal fun build(): FileCacheLustreConfigurationLogConfigurationArgs =
        FileCacheLustreConfigurationLogConfigurationArgs(
            destination = destination,
            level = level,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy