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

commonMain.aws.sdk.kotlin.services.chimesdkmessaging.model.StreamingConfiguration.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.chimesdkmessaging.model



/**
 * The configuration for connecting a messaging stream to Amazon Kinesis.
 */
public class StreamingConfiguration private constructor(builder: Builder) {
    /**
     * The data type of the configuration.
     */
    public val dataType: aws.sdk.kotlin.services.chimesdkmessaging.model.MessagingDataType = requireNotNull(builder.dataType) { "A non-null value must be provided for dataType" }
    /**
     * The ARN of the resource in the configuration.
     */
    public val resourceArn: kotlin.String = requireNotNull(builder.resourceArn) { "A non-null value must be provided for resourceArn" }

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

    override fun toString(): kotlin.String = buildString {
        append("StreamingConfiguration(")
        append("dataType=$dataType,")
        append("resourceArn=$resourceArn")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = dataType.hashCode()
        result = 31 * result + (resourceArn.hashCode())
        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 StreamingConfiguration

        if (dataType != other.dataType) return false
        if (resourceArn != other.resourceArn) return false

        return true
    }

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

    public class Builder {
        /**
         * The data type of the configuration.
         */
        public var dataType: aws.sdk.kotlin.services.chimesdkmessaging.model.MessagingDataType? = null
        /**
         * The ARN of the resource in the configuration.
         */
        public var resourceArn: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.chimesdkmessaging.model.StreamingConfiguration) : this() {
            this.dataType = x.dataType
            this.resourceArn = x.resourceArn
        }

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

        internal fun correctErrors(): Builder {
            if (dataType == null) dataType = MessagingDataType.SdkUnknown("no value provided")
            if (resourceArn == null) resourceArn = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy