
commonMain.aws.sdk.kotlin.services.nimble.model.StopStreamingSessionRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.nimble.model
public class StopStreamingSessionRequest private constructor(builder: Builder) {
/**
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
*/
public val clientToken: kotlin.String? = builder.clientToken
/**
* The streaming session ID for the `StopStreamingSessionRequest`.
*/
public val sessionId: kotlin.String? = builder.sessionId
/**
* The studioId for the StopStreamingSessionRequest.
*/
public val studioId: kotlin.String? = builder.studioId
/**
* Adds additional instructions to a streaming session stop action to either retain the EBS volumes or delete the EBS volumes.
*/
public val volumeRetentionMode: aws.sdk.kotlin.services.nimble.model.VolumeRetentionMode? = builder.volumeRetentionMode
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.nimble.model.StopStreamingSessionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StopStreamingSessionRequest(")
append("clientToken=$clientToken,")
append("sessionId=$sessionId,")
append("studioId=$studioId,")
append("volumeRetentionMode=$volumeRetentionMode")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientToken?.hashCode() ?: 0
result = 31 * result + (sessionId?.hashCode() ?: 0)
result = 31 * result + (studioId?.hashCode() ?: 0)
result = 31 * result + (volumeRetentionMode?.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 StopStreamingSessionRequest
if (clientToken != other.clientToken) return false
if (sessionId != other.sessionId) return false
if (studioId != other.studioId) return false
if (volumeRetentionMode != other.volumeRetentionMode) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.nimble.model.StopStreamingSessionRequest = Builder(this).apply(block).build()
public class Builder {
/**
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
*/
public var clientToken: kotlin.String? = null
/**
* The streaming session ID for the `StopStreamingSessionRequest`.
*/
public var sessionId: kotlin.String? = null
/**
* The studioId for the StopStreamingSessionRequest.
*/
public var studioId: kotlin.String? = null
/**
* Adds additional instructions to a streaming session stop action to either retain the EBS volumes or delete the EBS volumes.
*/
public var volumeRetentionMode: aws.sdk.kotlin.services.nimble.model.VolumeRetentionMode? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.nimble.model.StopStreamingSessionRequest) : this() {
this.clientToken = x.clientToken
this.sessionId = x.sessionId
this.studioId = x.studioId
this.volumeRetentionMode = x.volumeRetentionMode
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.nimble.model.StopStreamingSessionRequest = StopStreamingSessionRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy