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

commonMain.aws.sdk.kotlin.services.eventbridge.model.UpdateApiDestinationResponse.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.eventbridge.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant

public class UpdateApiDestinationResponse private constructor(builder: Builder) {
    /**
     * The ARN of the API destination that was updated.
     */
    public val apiDestinationArn: kotlin.String? = builder.apiDestinationArn
    /**
     * The state of the API destination that was updated.
     */
    public val apiDestinationState: aws.sdk.kotlin.services.eventbridge.model.ApiDestinationState? = builder.apiDestinationState
    /**
     * A time stamp for the time that the API destination was created.
     */
    public val creationTime: aws.smithy.kotlin.runtime.time.Instant? = builder.creationTime
    /**
     * A time stamp for the time that the API destination was last modified.
     */
    public val lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModifiedTime

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateApiDestinationResponse(")
        append("apiDestinationArn=$apiDestinationArn,")
        append("apiDestinationState=$apiDestinationState,")
        append("creationTime=$creationTime,")
        append("lastModifiedTime=$lastModifiedTime")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = apiDestinationArn?.hashCode() ?: 0
        result = 31 * result + (apiDestinationState?.hashCode() ?: 0)
        result = 31 * result + (creationTime?.hashCode() ?: 0)
        result = 31 * result + (lastModifiedTime?.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 UpdateApiDestinationResponse

        if (apiDestinationArn != other.apiDestinationArn) return false
        if (apiDestinationState != other.apiDestinationState) return false
        if (creationTime != other.creationTime) return false
        if (lastModifiedTime != other.lastModifiedTime) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The ARN of the API destination that was updated.
         */
        public var apiDestinationArn: kotlin.String? = null
        /**
         * The state of the API destination that was updated.
         */
        public var apiDestinationState: aws.sdk.kotlin.services.eventbridge.model.ApiDestinationState? = null
        /**
         * A time stamp for the time that the API destination was created.
         */
        public var creationTime: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * A time stamp for the time that the API destination was last modified.
         */
        public var lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.UpdateApiDestinationResponse) : this() {
            this.apiDestinationArn = x.apiDestinationArn
            this.apiDestinationState = x.apiDestinationState
            this.creationTime = x.creationTime
            this.lastModifiedTime = x.lastModifiedTime
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy