![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.mediaconnect.kotlin.enums.FlowSourceEncryptionAlgorithm.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.mediaconnect.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
*/
public enum class FlowSourceEncryptionAlgorithm(
public val javaValue: com.pulumi.awsnative.mediaconnect.enums.FlowSourceEncryptionAlgorithm,
) : ConvertibleToJava {
Aes128(com.pulumi.awsnative.mediaconnect.enums.FlowSourceEncryptionAlgorithm.Aes128),
Aes192(com.pulumi.awsnative.mediaconnect.enums.FlowSourceEncryptionAlgorithm.Aes192),
Aes256(com.pulumi.awsnative.mediaconnect.enums.FlowSourceEncryptionAlgorithm.Aes256),
;
override fun toJava(): com.pulumi.awsnative.mediaconnect.enums.FlowSourceEncryptionAlgorithm =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediaconnect.enums.FlowSourceEncryptionAlgorithm): FlowSourceEncryptionAlgorithm =
FlowSourceEncryptionAlgorithm.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy