commonMain.aws.sdk.kotlin.services.iotfleetwise.model.RegistrationStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotfleetwise-jvm Show documentation
Show all versions of iotfleetwise-jvm Show documentation
The AWS SDK for Kotlin client for IoTFleetWise
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotfleetwise.model
import kotlin.collections.List
public sealed class RegistrationStatus {
public abstract val value: kotlin.String
public object RegistrationFailure : aws.sdk.kotlin.services.iotfleetwise.model.RegistrationStatus() {
override val value: kotlin.String = "REGISTRATION_FAILURE"
override fun toString(): kotlin.String = "RegistrationFailure"
}
public object RegistrationPending : aws.sdk.kotlin.services.iotfleetwise.model.RegistrationStatus() {
override val value: kotlin.String = "REGISTRATION_PENDING"
override fun toString(): kotlin.String = "RegistrationPending"
}
public object RegistrationSuccess : aws.sdk.kotlin.services.iotfleetwise.model.RegistrationStatus() {
override val value: kotlin.String = "REGISTRATION_SUCCESS"
override fun toString(): kotlin.String = "RegistrationSuccess"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.iotfleetwise.model.RegistrationStatus() {
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.iotfleetwise.model.RegistrationStatus = when (value) {
"REGISTRATION_FAILURE" -> RegistrationFailure
"REGISTRATION_PENDING" -> RegistrationPending
"REGISTRATION_SUCCESS" -> RegistrationSuccess
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
RegistrationFailure,
RegistrationPending,
RegistrationSuccess,
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy