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