commonMain.aws.sdk.kotlin.services.mediaconvert.model.HlsRenditionGroupSettings.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 audio sources in an HLS alternate rendition group. Specify the properties (renditionGroupId, renditionName or renditionLanguageCode) to identify the unique audio track among the alternative rendition groups present in the HLS manifest. If no unique track is found, or multiple tracks match the properties provided, the job fails. If no properties in hlsRenditionGroupSettings are specified, the default audio track within the video segment is chosen. If there is no audio within video segment, the alternative audio with DEFAULT=YES is chosen instead.
*/
public class HlsRenditionGroupSettings private constructor(builder: Builder) {
/**
* Optional. Specify alternative group ID
*/
public val renditionGroupId: kotlin.String? = builder.renditionGroupId
/**
* Optional. Specify ISO 639-2 or ISO 639-3 code in the language property
*/
public val renditionLanguageCode: aws.sdk.kotlin.services.mediaconvert.model.LanguageCode? = builder.renditionLanguageCode
/**
* Optional. Specify media name
*/
public val renditionName: kotlin.String? = builder.renditionName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediaconvert.model.HlsRenditionGroupSettings = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("HlsRenditionGroupSettings(")
append("renditionGroupId=$renditionGroupId,")
append("renditionLanguageCode=$renditionLanguageCode,")
append("renditionName=$renditionName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = renditionGroupId?.hashCode() ?: 0
result = 31 * result + (renditionLanguageCode?.hashCode() ?: 0)
result = 31 * result + (renditionName?.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 HlsRenditionGroupSettings
if (renditionGroupId != other.renditionGroupId) return false
if (renditionLanguageCode != other.renditionLanguageCode) return false
if (renditionName != other.renditionName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediaconvert.model.HlsRenditionGroupSettings = Builder(this).apply(block).build()
public class Builder {
/**
* Optional. Specify alternative group ID
*/
public var renditionGroupId: kotlin.String? = null
/**
* Optional. Specify ISO 639-2 or ISO 639-3 code in the language property
*/
public var renditionLanguageCode: aws.sdk.kotlin.services.mediaconvert.model.LanguageCode? = null
/**
* Optional. Specify media name
*/
public var renditionName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediaconvert.model.HlsRenditionGroupSettings) : this() {
this.renditionGroupId = x.renditionGroupId
this.renditionLanguageCode = x.renditionLanguageCode
this.renditionName = x.renditionName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediaconvert.model.HlsRenditionGroupSettings = HlsRenditionGroupSettings(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy