![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.efs.kotlin.enums.FileSystemBackupPolicyStatus.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.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