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

commonMain.aws.sdk.kotlin.services.kinesisvideo.model.DeleteStreamRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.34
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.kinesisvideo.model

import aws.smithy.kotlin.runtime.SdkDsl

public class DeleteStreamRequest private constructor(builder: Builder) {
    /**
     * Optional: The version of the stream that you want to delete.
     *
     * Specify the version as a safeguard to ensure that your are deleting the correct stream. To get the stream version, use the `DescribeStream` API.
     *
     * If not specified, only the `CreationTime` is checked before deleting the stream.
     */
    public val currentVersion: kotlin.String? = builder.currentVersion
    /**
     * The Amazon Resource Name (ARN) of the stream that you want to delete.
     */
    public val streamArn: kotlin.String? = builder.streamArn

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

    override fun toString(): kotlin.String = buildString {
        append("DeleteStreamRequest(")
        append("currentVersion=$currentVersion,")
        append("streamArn=$streamArn")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = currentVersion?.hashCode() ?: 0
        result = 31 * result + (streamArn?.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 DeleteStreamRequest

        if (currentVersion != other.currentVersion) return false
        if (streamArn != other.streamArn) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Optional: The version of the stream that you want to delete.
         *
         * Specify the version as a safeguard to ensure that your are deleting the correct stream. To get the stream version, use the `DescribeStream` API.
         *
         * If not specified, only the `CreationTime` is checked before deleting the stream.
         */
        public var currentVersion: kotlin.String? = null
        /**
         * The Amazon Resource Name (ARN) of the stream that you want to delete.
         */
        public var streamArn: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.kinesisvideo.model.DeleteStreamRequest) : this() {
            this.currentVersion = x.currentVersion
            this.streamArn = x.streamArn
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy