commonMain.aws.sdk.kotlin.services.bedrockagent.model.DeleteAgentResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockagent-jvm Show documentation
Show all versions of bedrockagent-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Agent
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.model
public class DeleteAgentResponse private constructor(builder: Builder) {
/**
* The unique identifier of the agent that was deleted.
*/
public val agentId: kotlin.String = requireNotNull(builder.agentId) { "A non-null value must be provided for agentId" }
/**
* The status of the agent.
*/
public val agentStatus: aws.sdk.kotlin.services.bedrockagent.model.AgentStatus = requireNotNull(builder.agentStatus) { "A non-null value must be provided for agentStatus" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.DeleteAgentResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteAgentResponse(")
append("agentId=$agentId,")
append("agentStatus=$agentStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = agentId.hashCode()
result = 31 * result + (agentStatus.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 DeleteAgentResponse
if (agentId != other.agentId) return false
if (agentStatus != other.agentStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.DeleteAgentResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The unique identifier of the agent that was deleted.
*/
public var agentId: kotlin.String? = null
/**
* The status of the agent.
*/
public var agentStatus: aws.sdk.kotlin.services.bedrockagent.model.AgentStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.DeleteAgentResponse) : this() {
this.agentId = x.agentId
this.agentStatus = x.agentStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.DeleteAgentResponse = DeleteAgentResponse(this)
internal fun correctErrors(): Builder {
if (agentId == null) agentId = ""
if (agentStatus == null) agentStatus = AgentStatus.SdkUnknown("no value provided")
return this
}
}
}