
commonMain.aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileSettings.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
/**
* Required when you set Profile to the value XAVC_4K_INTRA_VBR.
*/
public class Xavc4kIntraVbrProfileSettings private constructor(builder: Builder) {
/**
* Specify the XAVC Intra 4k (VBR) Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
*/
public val xavcClass: aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileClass? = builder.xavcClass
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileSettings = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Xavc4kIntraVbrProfileSettings(")
append("xavcClass=$xavcClass")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = xavcClass?.hashCode() ?: 0
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as Xavc4kIntraVbrProfileSettings
if (xavcClass != other.xavcClass) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileSettings = Builder(this).apply(block).build()
public class Builder {
/**
* Specify the XAVC Intra 4k (VBR) Class to set the bitrate of your output. Outputs of the same class have similar image quality over the operating points that are valid for that class.
*/
public var xavcClass: aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileClass? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileSettings) : this() {
this.xavcClass = x.xavcClass
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediaconvert.model.Xavc4kIntraVbrProfileSettings = Xavc4kIntraVbrProfileSettings(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy