commonMain.aws.sdk.kotlin.services.dsql.model.CreateMultiRegionClustersResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsql-jvm Show documentation
Show all versions of dsql-jvm Show documentation
The AWS SDK for Kotlin client for DSQL
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.dsql.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateMultiRegionClustersResponse private constructor(builder: Builder) {
/**
* An array that contains the ARNs of all linked clusters.
*/
public val linkedClusterArns: List = requireNotNull(builder.linkedClusterArns) { "A non-null value must be provided for linkedClusterArns" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.dsql.model.CreateMultiRegionClustersResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateMultiRegionClustersResponse(")
append("linkedClusterArns=$linkedClusterArns")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = linkedClusterArns.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 CreateMultiRegionClustersResponse
if (linkedClusterArns != other.linkedClusterArns) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.dsql.model.CreateMultiRegionClustersResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array that contains the ARNs of all linked clusters.
*/
public var linkedClusterArns: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.dsql.model.CreateMultiRegionClustersResponse) : this() {
this.linkedClusterArns = x.linkedClusterArns
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.dsql.model.CreateMultiRegionClustersResponse = CreateMultiRegionClustersResponse(this)
internal fun correctErrors(): Builder {
if (linkedClusterArns == null) linkedClusterArns = emptyList()
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy