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

commonMain.aws.sdk.kotlin.services.databasemigrationservice.model.StartDataMigrationRequest.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 StartDataMigrationRequest private constructor(builder: Builder) {
    /**
     * The identifier (name or ARN) of the data migration to start.
     */
    public val dataMigrationIdentifier: kotlin.String? = builder.dataMigrationIdentifier
    /**
     * Specifies the start type for the data migration. Valid values include `start-replication`, `reload-target`, and `resume-processing`.
     */
    public val startType: aws.sdk.kotlin.services.databasemigrationservice.model.StartReplicationMigrationTypeValue? = builder.startType

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

    override fun toString(): kotlin.String = buildString {
        append("StartDataMigrationRequest(")
        append("dataMigrationIdentifier=$dataMigrationIdentifier,")
        append("startType=$startType")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = dataMigrationIdentifier?.hashCode() ?: 0
        result = 31 * result + (startType?.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 StartDataMigrationRequest

        if (dataMigrationIdentifier != other.dataMigrationIdentifier) return false
        if (startType != other.startType) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The identifier (name or ARN) of the data migration to start.
         */
        public var dataMigrationIdentifier: kotlin.String? = null
        /**
         * Specifies the start type for the data migration. Valid values include `start-replication`, `reload-target`, and `resume-processing`.
         */
        public var startType: aws.sdk.kotlin.services.databasemigrationservice.model.StartReplicationMigrationTypeValue? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.databasemigrationservice.model.StartDataMigrationRequest) : this() {
            this.dataMigrationIdentifier = x.dataMigrationIdentifier
            this.startType = x.startType
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy