commonMain.aws.sdk.kotlin.services.redshift.model.SecondaryClusterInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The AvailabilityZone and ClusterNodes information of the secondary compute unit.
*/
public class SecondaryClusterInfo private constructor(builder: Builder) {
/**
* The name of the Availability Zone in which the secondary compute unit of the cluster is located.
*/
public val availabilityZone: kotlin.String? = builder.availabilityZone
/**
* The nodes in the secondary compute unit.
*/
public val clusterNodes: List? = builder.clusterNodes
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.SecondaryClusterInfo = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SecondaryClusterInfo(")
append("availabilityZone=$availabilityZone,")
append("clusterNodes=$clusterNodes")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = availabilityZone?.hashCode() ?: 0
result = 31 * result + (clusterNodes?.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 SecondaryClusterInfo
if (availabilityZone != other.availabilityZone) return false
if (clusterNodes != other.clusterNodes) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.SecondaryClusterInfo = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the Availability Zone in which the secondary compute unit of the cluster is located.
*/
public var availabilityZone: kotlin.String? = null
/**
* The nodes in the secondary compute unit.
*/
public var clusterNodes: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.SecondaryClusterInfo) : this() {
this.availabilityZone = x.availabilityZone
this.clusterNodes = x.clusterNodes
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.SecondaryClusterInfo = SecondaryClusterInfo(this)
internal fun correctErrors(): Builder {
return this
}
}
}