commonMain.aws.sdk.kotlin.services.mediaconvert.model.TeletextSourceSettings.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
/**
* Settings specific to Teletext caption sources, including Page number.
*/
public class TeletextSourceSettings private constructor(builder: Builder) {
/**
* Use Page Number (PageNumber) to specify the three-digit hexadecimal page number that will be used for Teletext captions. Do not use this setting if you are passing through teletext from the input source to output.
*/
public val pageNumber: kotlin.String? = builder.pageNumber
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediaconvert.model.TeletextSourceSettings = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("TeletextSourceSettings(")
append("pageNumber=$pageNumber")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = pageNumber?.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 TeletextSourceSettings
if (pageNumber != other.pageNumber) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediaconvert.model.TeletextSourceSettings = Builder(this).apply(block).build()
public class Builder {
/**
* Use Page Number (PageNumber) to specify the three-digit hexadecimal page number that will be used for Teletext captions. Do not use this setting if you are passing through teletext from the input source to output.
*/
public var pageNumber: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediaconvert.model.TeletextSourceSettings) : this() {
this.pageNumber = x.pageNumber
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediaconvert.model.TeletextSourceSettings = TeletextSourceSettings(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy