commonMain.aws.sdk.kotlin.services.vpclattice.model.LambdaEventStructureVersion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.model
import kotlin.collections.List
public sealed class LambdaEventStructureVersion {
public abstract val value: kotlin.String
/**
* This is the default lambda event structure version
*/
public object V1 : aws.sdk.kotlin.services.vpclattice.model.LambdaEventStructureVersion() {
override val value: kotlin.String = "V1"
override fun toString(): kotlin.String = "V1"
}
/**
* Indicates use of lambda event structure version 2
*/
public object V2 : aws.sdk.kotlin.services.vpclattice.model.LambdaEventStructureVersion() {
override val value: kotlin.String = "V2"
override fun toString(): kotlin.String = "V2"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.vpclattice.model.LambdaEventStructureVersion() {
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.vpclattice.model.LambdaEventStructureVersion = when (value) {
"V1" -> V1
"V2" -> V2
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
V1,
V2,
)
}
}