commonMain.aws.sdk.kotlin.services.mediaconvert.model.PricingPlan.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert Show documentation
Show all versions of mediaconvert Show documentation
The AWS SDK for Kotlin client for MediaConvert
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
import kotlin.collections.List
/**
* Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment.
*/
public sealed class PricingPlan {
public abstract val value: kotlin.String
public object OnDemand : aws.sdk.kotlin.services.mediaconvert.model.PricingPlan() {
override val value: kotlin.String = "ON_DEMAND"
override fun toString(): kotlin.String = value
}
public object Reserved : aws.sdk.kotlin.services.mediaconvert.model.PricingPlan() {
override val value: kotlin.String = "RESERVED"
override fun toString(): kotlin.String = value
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.PricingPlan() {
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.mediaconvert.model.PricingPlan = when(str) {
"ON_DEMAND" -> OnDemand
"RESERVED" -> Reserved
else -> SdkUnknown(str)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = listOf(
OnDemand,
Reserved
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy