commonMain.aws.sdk.kotlin.services.databasemigrationservice.model.AvailabilityZone.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databasemigrationservice-jvm Show documentation
Show all versions of databasemigrationservice-jvm Show documentation
The AWS SDK for Kotlin client for Database Migration Service
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
/**
* The name of an Availability Zone for use during database migration. `AvailabilityZone` is an optional parameter to the `CreateReplicationInstance`[](https://docs.aws.amazon.com/dms/latest/APIReference/API_CreateReplicationInstance.html) operation, and it’s value relates to the Amazon Web Services Region of an endpoint. For example, the availability zone of an endpoint in the us-east-1 region might be us-east-1a, us-east-1b, us-east-1c, or us-east-1d.
*/
public class AvailabilityZone private constructor(builder: Builder) {
/**
* The name of the Availability Zone.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.databasemigrationservice.model.AvailabilityZone = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AvailabilityZone(")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.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 AvailabilityZone
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.databasemigrationservice.model.AvailabilityZone = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the Availability Zone.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.databasemigrationservice.model.AvailabilityZone) : this() {
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.databasemigrationservice.model.AvailabilityZone = AvailabilityZone(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy