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

commonMain.aws.sdk.kotlin.services.appstream.model.StreamingExperienceSettings.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.appstream.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
 */
public class StreamingExperienceSettings private constructor(builder: Builder) {
    /**
     * The preferred protocol that you want to use while streaming your application.
     */
    public val preferredProtocol: aws.sdk.kotlin.services.appstream.model.PreferredProtocol? = builder.preferredProtocol

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

    override fun toString(): kotlin.String = buildString {
        append("StreamingExperienceSettings(")
        append("preferredProtocol=$preferredProtocol")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = preferredProtocol?.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 StreamingExperienceSettings

        if (preferredProtocol != other.preferredProtocol) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The preferred protocol that you want to use while streaming your application.
         */
        public var preferredProtocol: aws.sdk.kotlin.services.appstream.model.PreferredProtocol? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.appstream.model.StreamingExperienceSettings) : this() {
            this.preferredProtocol = x.preferredProtocol
        }

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

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy