commonMain.aws.sdk.kotlin.services.redshift.model.AccountAttribute.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
/**
* A name value pair that describes an aspect of an account.
*/
public class AccountAttribute private constructor(builder: Builder) {
/**
* The name of the attribute.
*/
public val attributeName: kotlin.String? = builder.attributeName
/**
* A list of attribute values.
*/
public val attributeValues: List? = builder.attributeValues
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.AccountAttribute = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AccountAttribute(")
append("attributeName=$attributeName,")
append("attributeValues=$attributeValues")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = attributeName?.hashCode() ?: 0
result = 31 * result + (attributeValues?.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 AccountAttribute
if (attributeName != other.attributeName) return false
if (attributeValues != other.attributeValues) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.AccountAttribute = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the attribute.
*/
public var attributeName: kotlin.String? = null
/**
* A list of attribute values.
*/
public var attributeValues: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.AccountAttribute) : this() {
this.attributeName = x.attributeName
this.attributeValues = x.attributeValues
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.AccountAttribute = AccountAttribute(this)
internal fun correctErrors(): Builder {
return this
}
}
}