commonMain.aws.sdk.kotlin.services.bedrockagent.model.CreateAgentResponse.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 CreateAgentResponse private constructor(builder: Builder) {
/**
* Contains details about the agent created.
*/
public val agent: aws.sdk.kotlin.services.bedrockagent.model.Agent? = builder.agent
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.bedrockagent.model.CreateAgentResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateAgentResponse(")
append("agent=$agent")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = agent?.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 CreateAgentResponse
if (agent != other.agent) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.bedrockagent.model.CreateAgentResponse = Builder(this).apply(block).build()
public class Builder {
/**
* Contains details about the agent created.
*/
public var agent: aws.sdk.kotlin.services.bedrockagent.model.Agent? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.bedrockagent.model.CreateAgentResponse) : this() {
this.agent = x.agent
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.bedrockagent.model.CreateAgentResponse = CreateAgentResponse(this)
/**
* construct an [aws.sdk.kotlin.services.bedrockagent.model.Agent] inside the given [block]
*/
public fun agent(block: aws.sdk.kotlin.services.bedrockagent.model.Agent.Builder.() -> kotlin.Unit) {
this.agent = aws.sdk.kotlin.services.bedrockagent.model.Agent.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}