com.pulumi.aws.mediaconvert.kotlin.outputs.QueueReservationPlanSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.mediaconvert.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property commitment The length of the term of your reserved queue pricing plan commitment. Valid value is `ONE_YEAR`.
* @property renewalType Specifies whether the term of your reserved queue pricing plan. Valid values are `AUTO_RENEW` or `EXPIRE`.
* @property reservedSlots Specifies the number of reserved transcode slots (RTS) for queue.
*/
public data class QueueReservationPlanSettings(
public val commitment: String,
public val renewalType: String,
public val reservedSlots: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.mediaconvert.outputs.QueueReservationPlanSettings): QueueReservationPlanSettings = QueueReservationPlanSettings(
commitment = javaType.commitment(),
renewalType = javaType.renewalType(),
reservedSlots = javaType.reservedSlots(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy