![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.datasync.kotlin.enums.TaskOptionsMtime.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.datasync.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* A value that indicates the last time that a file was modified (that is, a file was written to) before the PREPARING phase.
*/
public enum class TaskOptionsMtime(
public val javaValue: com.pulumi.awsnative.datasync.enums.TaskOptionsMtime,
) : ConvertibleToJava {
None(com.pulumi.awsnative.datasync.enums.TaskOptionsMtime.None),
Preserve(com.pulumi.awsnative.datasync.enums.TaskOptionsMtime.Preserve),
;
override fun toJava(): com.pulumi.awsnative.datasync.enums.TaskOptionsMtime = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datasync.enums.TaskOptionsMtime): TaskOptionsMtime = TaskOptionsMtime.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy