commonMain.aws.sdk.kotlin.services.kinesisvideo.model.DeleteSignalingChannelRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinesisvideo-jvm Show documentation
Show all versions of kinesisvideo-jvm Show documentation
The AWS SDK for Kotlin client for Kinesis Video
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.kinesisvideo.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteSignalingChannelRequest private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the signaling channel that you want to delete.
*/
public val channelArn: kotlin.String? = builder.channelArn
/**
* The current version of the signaling channel that you want to delete. You can obtain the current version by invoking the `DescribeSignalingChannel` or `ListSignalingChannels` API operations.
*/
public val currentVersion: kotlin.String? = builder.currentVersion
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.kinesisvideo.model.DeleteSignalingChannelRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteSignalingChannelRequest(")
append("channelArn=$channelArn,")
append("currentVersion=$currentVersion")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = channelArn?.hashCode() ?: 0
result = 31 * result + (currentVersion?.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 DeleteSignalingChannelRequest
if (channelArn != other.channelArn) return false
if (currentVersion != other.currentVersion) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.kinesisvideo.model.DeleteSignalingChannelRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the signaling channel that you want to delete.
*/
public var channelArn: kotlin.String? = null
/**
* The current version of the signaling channel that you want to delete. You can obtain the current version by invoking the `DescribeSignalingChannel` or `ListSignalingChannels` API operations.
*/
public var currentVersion: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.kinesisvideo.model.DeleteSignalingChannelRequest) : this() {
this.channelArn = x.channelArn
this.currentVersion = x.currentVersion
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.kinesisvideo.model.DeleteSignalingChannelRequest = DeleteSignalingChannelRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}