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

commonMain.aws.sdk.kotlin.services.databasemigrationservice.model.StopReplicationResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.databasemigrationservice.model

import aws.smithy.kotlin.runtime.SdkDsl

public class StopReplicationResponse private constructor(builder: Builder) {
    /**
     * The replication that DMS stopped.
     */
    public val replication: aws.sdk.kotlin.services.databasemigrationservice.model.Replication? = builder.replication

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

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

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

        if (replication != other.replication) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The replication that DMS stopped.
         */
        public var replication: aws.sdk.kotlin.services.databasemigrationservice.model.Replication? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.databasemigrationservice.model.StopReplicationResponse) : this() {
            this.replication = x.replication
        }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy