aws.sdk.kotlin.services.transcribe.model.RedactionOutput.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transcribe Show documentation
Show all versions of transcribe Show documentation
Amazon Transcribe Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.transcribe.model
import kotlin.collections.List
sealed class RedactionOutput {
abstract val value: kotlin.String
object Redacted : aws.sdk.kotlin.services.transcribe.model.RedactionOutput() {
override val value: kotlin.String = "redacted"
override fun toString(): kotlin.String = value
}
object RedactedAndUnredacted : aws.sdk.kotlin.services.transcribe.model.RedactionOutput() {
override val value: kotlin.String = "redacted_and_unredacted"
override fun toString(): kotlin.String = value
}
data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.transcribe.model.RedactionOutput() {
override fun toString(): kotlin.String = value
}
companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.transcribe.model.RedactionOutput = when(str) {
"redacted" -> Redacted
"redacted_and_unredacted" -> RedactedAndUnredacted
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
fun values(): kotlin.collections.List = listOf(
Redacted,
RedactedAndUnredacted
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy