HarnessToolResultContentBlock

A content block within a tool result.

Inheritors

Types

Link copied to clipboard
data class Json(val value: <Error class: unknown class>) : HarnessToolResultContentBlock

JSON content.

Link copied to clipboard
Link copied to clipboard
data class Text(val value: String) : HarnessToolResultContentBlock

Text content.

Functions

Link copied to clipboard
fun asJson(): <Error class: unknown class>

Casts this HarnessToolResultContentBlock as a Json and retrieves its aws.smithy.kotlin.runtime.content.Document value. Throws an exception if the HarnessToolResultContentBlock is not a Json.

Link copied to clipboard
fun asJsonOrNull(): <Error class: unknown class>?

Casts this HarnessToolResultContentBlock as a Json and retrieves its aws.smithy.kotlin.runtime.content.Document value. Returns null if the HarnessToolResultContentBlock is not a Json.

Link copied to clipboard
fun asText(): String

Casts this HarnessToolResultContentBlock as a Text and retrieves its kotlin.String value. Throws an exception if the HarnessToolResultContentBlock is not a Text.

Link copied to clipboard

Casts this HarnessToolResultContentBlock as a Text and retrieves its kotlin.String value. Returns null if the HarnessToolResultContentBlock is not a Text.