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

com.pulumi.awsnative.efs.kotlin.enums.FileSystemBackupPolicyStatus.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.efs.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * Set the backup policy status for the file system.
 *   +   *ENABLED* - Turns automatic backups on for the file system.
 *   +   *DISABLED* - Turns automatic backups off for the file system.
 */
public enum class FileSystemBackupPolicyStatus(
    public val javaValue: com.pulumi.awsnative.efs.enums.FileSystemBackupPolicyStatus,
) : ConvertibleToJava {
    Disabled(com.pulumi.awsnative.efs.enums.FileSystemBackupPolicyStatus.Disabled),
    Enabled(com.pulumi.awsnative.efs.enums.FileSystemBackupPolicyStatus.Enabled),
    ;

    override fun toJava(): com.pulumi.awsnative.efs.enums.FileSystemBackupPolicyStatus = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.efs.enums.FileSystemBackupPolicyStatus): FileSystemBackupPolicyStatus =
            FileSystemBackupPolicyStatus.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy