All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaStreamSource.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.chimesdkmediapipelines.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Structure that contains the settings for media stream sources.
 */
public class MediaStreamSource private constructor(builder: Builder) {
    /**
     * The ARN of the meeting.
     */
    public val sourceArn: kotlin.String = requireNotNull(builder.sourceArn) { "A non-null value must be provided for sourceArn" }
    /**
     * The type of media stream source.
     */
    public val sourceType: aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaPipelineSourceType = requireNotNull(builder.sourceType) { "A non-null value must be provided for sourceType" }

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaStreamSource = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("MediaStreamSource(")
        append("sourceArn=*** Sensitive Data Redacted ***,")
        append("sourceType=$sourceType")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = sourceArn.hashCode()
        result = 31 * result + (sourceType.hashCode())
        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 MediaStreamSource

        if (sourceArn != other.sourceArn) return false
        if (sourceType != other.sourceType) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaStreamSource = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The ARN of the meeting.
         */
        public var sourceArn: kotlin.String? = null
        /**
         * The type of media stream source.
         */
        public var sourceType: aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaPipelineSourceType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaStreamSource) : this() {
            this.sourceArn = x.sourceArn
            this.sourceType = x.sourceType
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.chimesdkmediapipelines.model.MediaStreamSource = MediaStreamSource(this)

        internal fun correctErrors(): Builder {
            if (sourceArn == null) sourceArn = ""
            if (sourceType == null) sourceType = MediaPipelineSourceType.SdkUnknown("no value provided")
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy