commonMain.aws.sdk.kotlin.services.redshift.model.ElasticIpStatus.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
/**
* Describes the status of the elastic IP (EIP) address.
*/
public class ElasticIpStatus private constructor(builder: Builder) {
/**
* The elastic IP (EIP) address for the cluster.
*/
public val elasticIp: kotlin.String? = builder.elasticIp
/**
* The status of the elastic IP (EIP) address.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.ElasticIpStatus = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ElasticIpStatus(")
append("elasticIp=$elasticIp,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = elasticIp?.hashCode() ?: 0
result = 31 * result + (status?.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 ElasticIpStatus
if (elasticIp != other.elasticIp) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.ElasticIpStatus = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The elastic IP (EIP) address for the cluster.
*/
public var elasticIp: kotlin.String? = null
/**
* The status of the elastic IP (EIP) address.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.ElasticIpStatus) : this() {
this.elasticIp = x.elasticIp
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.ElasticIpStatus = ElasticIpStatus(this)
internal fun correctErrors(): Builder {
return this
}
}
}