commonMain.aws.sdk.kotlin.services.iot.model.DeviceDefenderIndexingMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot Show documentation
Show all versions of iot Show documentation
The AWS SDK for Kotlin client for IoT
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iot.model
import kotlin.collections.List
public sealed class DeviceDefenderIndexingMode {
public abstract val value: kotlin.String
public object Off : aws.sdk.kotlin.services.iot.model.DeviceDefenderIndexingMode() {
override val value: kotlin.String = "OFF"
override fun toString(): kotlin.String = value
}
public object Violations : aws.sdk.kotlin.services.iot.model.DeviceDefenderIndexingMode() {
override val value: kotlin.String = "VIOLATIONS"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.iot.model.DeviceDefenderIndexingMode() {
override fun toString(): kotlin.String = value
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(str: kotlin.String): aws.sdk.kotlin.services.iot.model.DeviceDefenderIndexingMode = when(str) {
"OFF" -> Off
"VIOLATIONS" -> Violations
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
Off,
Violations
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy