![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.batch.kotlin.outputs.JobDefinitionMountPoints.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.batch.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property containerPath The path on the container where the host volume is mounted.
* @property readOnly If this value is `true` , the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is `false` .
* @property sourceVolume The name of the volume to mount.
*/
public data class JobDefinitionMountPoints(
public val containerPath: String? = null,
public val readOnly: Boolean? = null,
public val sourceVolume: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.batch.outputs.JobDefinitionMountPoints): JobDefinitionMountPoints = JobDefinitionMountPoints(
containerPath = javaType.containerPath().map({ args0 -> args0 }).orElse(null),
readOnly = javaType.readOnly().map({ args0 -> args0 }).orElse(null),
sourceVolume = javaType.sourceVolume().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy