commonMain.aws.sdk.kotlin.services.cloudsearch.model.CreateDomainResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsearch-jvm Show documentation
Show all versions of cloudsearch-jvm Show documentation
The AWS SDK for Kotlin client for CloudSearch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudsearch.model
/**
* The result of a `CreateDomainRequest`. Contains the status of a newly created domain.
*/
public class CreateDomainResponse private constructor(builder: Builder) {
/**
* The current status of the search domain.
*/
public val domainStatus: aws.sdk.kotlin.services.cloudsearch.model.DomainStatus? = builder.domainStatus
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudsearch.model.CreateDomainResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateDomainResponse(")
append("domainStatus=$domainStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domainStatus?.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 CreateDomainResponse
if (domainStatus != other.domainStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudsearch.model.CreateDomainResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The current status of the search domain.
*/
public var domainStatus: aws.sdk.kotlin.services.cloudsearch.model.DomainStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudsearch.model.CreateDomainResponse) : this() {
this.domainStatus = x.domainStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudsearch.model.CreateDomainResponse = CreateDomainResponse(this)
/**
* construct an [aws.sdk.kotlin.services.cloudsearch.model.DomainStatus] inside the given [block]
*/
public fun domainStatus(block: aws.sdk.kotlin.services.cloudsearch.model.DomainStatus.Builder.() -> kotlin.Unit) {
this.domainStatus = aws.sdk.kotlin.services.cloudsearch.model.DomainStatus.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy