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

commonMain.aws.sdk.kotlin.services.qldb.model.DescribeJournalKinesisStreamResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.qldb.model

import aws.smithy.kotlin.runtime.SdkDsl

public class DescribeJournalKinesisStreamResponse private constructor(builder: Builder) {
    /**
     * Information about the QLDB journal stream returned by a `DescribeJournalS3Export` request.
     */
    public val stream: aws.sdk.kotlin.services.qldb.model.JournalKinesisStreamDescription? = builder.stream

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeJournalKinesisStreamResponse(")
        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 DescribeJournalKinesisStreamResponse

        if (stream != other.stream) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Information about the QLDB journal stream returned by a `DescribeJournalS3Export` request.
         */
        public var stream: aws.sdk.kotlin.services.qldb.model.JournalKinesisStreamDescription? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.qldb.model.DescribeJournalKinesisStreamResponse) : this() {
            this.stream = x.stream
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.qldb.model.JournalKinesisStreamDescription] inside the given [block]
         */
        public fun stream(block: aws.sdk.kotlin.services.qldb.model.JournalKinesisStreamDescription.Builder.() -> kotlin.Unit) {
            this.stream = aws.sdk.kotlin.services.qldb.model.JournalKinesisStreamDescription.invoke(block)
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy