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