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

com.pulumi.aws.sagemaker.kotlin.inputs.AppImageConfigKernelGatewayImageConfigKernelSpecArgs.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.sagemaker.kotlin.inputs

import com.pulumi.aws.sagemaker.inputs.AppImageConfigKernelGatewayImageConfigKernelSpecArgs.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.jvm.JvmName

/**
 *
 * @property displayName The display name of the kernel.
 * @property name The name of the kernel.
 */
public data class AppImageConfigKernelGatewayImageConfigKernelSpecArgs(
    public val displayName: Output? = null,
    public val name: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.sagemaker.inputs.AppImageConfigKernelGatewayImageConfigKernelSpecArgs =
        com.pulumi.aws.sagemaker.inputs.AppImageConfigKernelGatewayImageConfigKernelSpecArgs.builder()
            .displayName(displayName?.applyValue({ args0 -> args0 }))
            .name(name.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AppImageConfigKernelGatewayImageConfigKernelSpecArgs].
 */
@PulumiTagMarker
public class AppImageConfigKernelGatewayImageConfigKernelSpecArgsBuilder internal constructor() {
    private var displayName: Output? = null

    private var name: Output? = null

    /**
     * @param value The display name of the kernel.
     */
    @JvmName("dpkpjaigfmoexbtw")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value The name of the kernel.
     */
    @JvmName("gqasmefnsymoxdtl")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The display name of the kernel.
     */
    @JvmName("dxyaanylqcdugfhh")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    /**
     * @param value The name of the kernel.
     */
    @JvmName("dsffblyddriehypw")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    internal fun build(): AppImageConfigKernelGatewayImageConfigKernelSpecArgs =
        AppImageConfigKernelGatewayImageConfigKernelSpecArgs(
            displayName = displayName,
            name = name ?: throw PulumiNullFieldException("name"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy