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

com.pulumi.awsnative.batch.kotlin.inputs.JobDefinitionEksHostPathArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.batch.kotlin.inputs

import com.pulumi.awsnative.batch.inputs.JobDefinitionEksHostPathArgs.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 path The path of the file or directory on the host to mount into containers on the pod.
 */
public data class JobDefinitionEksHostPathArgs(
    public val path: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.batch.inputs.JobDefinitionEksHostPathArgs =
        com.pulumi.awsnative.batch.inputs.JobDefinitionEksHostPathArgs.builder()
            .path(path?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [JobDefinitionEksHostPathArgs].
 */
@PulumiTagMarker
public class JobDefinitionEksHostPathArgsBuilder internal constructor() {
    private var path: Output? = null

    /**
     * @param value The path of the file or directory on the host to mount into containers on the pod.
     */
    @JvmName("mvwpawwswkxpulff")
    public suspend fun path(`value`: Output) {
        this.path = value
    }

    /**
     * @param value The path of the file or directory on the host to mount into containers on the pod.
     */
    @JvmName("bllsdplryqmamvnx")
    public suspend fun path(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.path = mapped
    }

    internal fun build(): JobDefinitionEksHostPathArgs = JobDefinitionEksHostPathArgs(
        path = path,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy