commonMain.aws.sdk.kotlin.services.deadline.model.CreateQueueResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateQueueResponse private constructor(builder: Builder) {
/**
* The queue ID.
*/
public val queueId: kotlin.String = requireNotNull(builder.queueId) { "A non-null value must be provided for queueId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.CreateQueueResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateQueueResponse(")
append("queueId=$queueId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = queueId.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 CreateQueueResponse
if (queueId != other.queueId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.CreateQueueResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The queue ID.
*/
public var queueId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.CreateQueueResponse) : this() {
this.queueId = x.queueId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.CreateQueueResponse = CreateQueueResponse(this)
internal fun correctErrors(): Builder {
if (queueId == null) queueId = ""
return this
}
}
}