commonMain.aws.sdk.kotlin.services.outposts.model.ShipmentCarrier.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of outposts-jvm Show documentation
Show all versions of outposts-jvm Show documentation
The AWS SDK for Kotlin client for Outposts
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.outposts.model
import kotlin.collections.List
public sealed class ShipmentCarrier {
public abstract val value: kotlin.String
public object Dbs : aws.sdk.kotlin.services.outposts.model.ShipmentCarrier() {
override val value: kotlin.String = "DBS"
override fun toString(): kotlin.String = "Dbs"
}
public object Dhl : aws.sdk.kotlin.services.outposts.model.ShipmentCarrier() {
override val value: kotlin.String = "DHL"
override fun toString(): kotlin.String = "Dhl"
}
public object Expeditors : aws.sdk.kotlin.services.outposts.model.ShipmentCarrier() {
override val value: kotlin.String = "EXPEDITORS"
override fun toString(): kotlin.String = "Expeditors"
}
public object Fedex : aws.sdk.kotlin.services.outposts.model.ShipmentCarrier() {
override val value: kotlin.String = "FEDEX"
override fun toString(): kotlin.String = "Fedex"
}
public object Ups : aws.sdk.kotlin.services.outposts.model.ShipmentCarrier() {
override val value: kotlin.String = "UPS"
override fun toString(): kotlin.String = "Ups"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.outposts.model.ShipmentCarrier() {
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.outposts.model.ShipmentCarrier = when (value) {
"DBS" -> Dbs
"DHL" -> Dhl
"EXPEDITORS" -> Expeditors
"FEDEX" -> Fedex
"UPS" -> Ups
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Dbs,
Dhl,
Expeditors,
Fedex,
Ups,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy