commonMain.aws.sdk.kotlin.services.nimble.model.CreateStreamingSessionStreamResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble-jvm Show documentation
Show all versions of nimble-jvm Show documentation
The AWS SDK for Kotlin client for nimble
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.nimble.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateStreamingSessionStreamResponse private constructor(builder: Builder) {
/**
* The stream.
*/
public val stream: aws.sdk.kotlin.services.nimble.model.StreamingSessionStream? = builder.stream
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.nimble.model.CreateStreamingSessionStreamResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateStreamingSessionStreamResponse(")
append("stream=$stream")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = stream?.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 CreateStreamingSessionStreamResponse
if (stream != other.stream) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.nimble.model.CreateStreamingSessionStreamResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The stream.
*/
public var stream: aws.sdk.kotlin.services.nimble.model.StreamingSessionStream? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.nimble.model.CreateStreamingSessionStreamResponse) : this() {
this.stream = x.stream
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.nimble.model.CreateStreamingSessionStreamResponse = CreateStreamingSessionStreamResponse(this)
/**
* construct an [aws.sdk.kotlin.services.nimble.model.StreamingSessionStream] inside the given [block]
*/
public fun stream(block: aws.sdk.kotlin.services.nimble.model.StreamingSessionStream.Builder.() -> kotlin.Unit) {
this.stream = aws.sdk.kotlin.services.nimble.model.StreamingSessionStream.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}