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

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

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

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

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The structure that contains the information required to deliver a notification to a customer.
 */
public class NotificationDestinationConfig private constructor(builder: Builder) {
    /**
     * The Uniform Resource Identifier (URI) that identifies where the images will be delivered.
     */
    public val uri: kotlin.String = requireNotNull(builder.uri) { "A non-null value must be provided for uri" }

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

    override fun toString(): kotlin.String = buildString {
        append("NotificationDestinationConfig(")
        append("uri=$uri")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = uri.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 NotificationDestinationConfig

        if (uri != other.uri) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Uniform Resource Identifier (URI) that identifies where the images will be delivered.
         */
        public var uri: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.kinesisvideo.model.NotificationDestinationConfig) : this() {
            this.uri = x.uri
        }

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

        internal fun correctErrors(): Builder {
            if (uri == null) uri = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy