commonMain.aws.sdk.kotlin.services.glue.model.CreateRegistryRequest.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
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
public class CreateRegistryRequest private constructor(builder: Builder) {
/**
* A description of the registry. If description is not provided, there will not be any default value for this.
*/
public val description: kotlin.String? = builder.description
/**
* Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.
*/
public val registryName: kotlin.String? = builder.registryName
/**
* Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.
*/
public val tags: Map? = builder.tags
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.CreateRegistryRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateRegistryRequest(")
append("description=$description,")
append("registryName=$registryName,")
append("tags=$tags")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = description?.hashCode() ?: 0
result = 31 * result + (registryName?.hashCode() ?: 0)
result = 31 * result + (tags?.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 CreateRegistryRequest
if (description != other.description) return false
if (registryName != other.registryName) return false
if (tags != other.tags) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.CreateRegistryRequest = Builder(this).apply(block).build()
public class Builder {
/**
* A description of the registry. If description is not provided, there will not be any default value for this.
*/
public var description: kotlin.String? = null
/**
* Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.
*/
public var registryName: kotlin.String? = null
/**
* Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.
*/
public var tags: Map? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.CreateRegistryRequest) : this() {
this.description = x.description
this.registryName = x.registryName
this.tags = x.tags
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.CreateRegistryRequest = CreateRegistryRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}