commonMain.aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databasemigrationservice-jvm Show documentation
Show all versions of databasemigrationservice-jvm Show documentation
The AWS SDK for Kotlin client for Database Migration Service
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.databasemigrationservice.model
import kotlin.collections.List
public sealed class DmsSslModeValue {
public abstract val value: kotlin.String
public object None : aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue() {
override val value: kotlin.String = "none"
override fun toString(): kotlin.String = "None"
}
public object Require : aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue() {
override val value: kotlin.String = "require"
override fun toString(): kotlin.String = "Require"
}
public object VerifyCa : aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue() {
override val value: kotlin.String = "verify-ca"
override fun toString(): kotlin.String = "VerifyCa"
}
public object VerifyFull : aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue() {
override val value: kotlin.String = "verify-full"
override fun toString(): kotlin.String = "VerifyFull"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue() {
override fun toString(): kotlin.String = "SdkUnknown($value)"
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.databasemigrationservice.model.DmsSslModeValue = when (value) {
"none" -> None
"require" -> Require
"verify-ca" -> VerifyCa
"verify-full" -> VerifyFull
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
None,
Require,
VerifyCa,
VerifyFull,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy