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

com.pulumi.awsnative.datasync.kotlin.enums.TaskOptionsMtime.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: 1.24.0.0
Show newest version
@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