commonMain.aws.sdk.kotlin.services.appstream.model.StreamingExperienceSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appstream-jvm Show documentation
Show all versions of appstream-jvm Show documentation
The AWS SDK for Kotlin client for AppStream
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appstream.model
/**
* 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)")
}
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()
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)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy