types

package
v1.40.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 10, 2025 License: Apache-2.0 Imports: 5 Imported by: 87

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request is denied because you do not have sufficient permissions to perform the requested action. For troubleshooting this error, see AccessDeniedExceptionin the Amazon Bedrock User Guide

func (*AccessDeniedException) Error

func (e *AccessDeniedException) Error() string

func (*AccessDeniedException) ErrorCode

func (e *AccessDeniedException) ErrorCode() string

func (*AccessDeniedException) ErrorFault

func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault

func (*AccessDeniedException) ErrorMessage

func (e *AccessDeniedException) ErrorMessage() string

type AnyToolChoice added in v1.9.0

type AnyToolChoice struct {
	// contains filtered or unexported fields
}

The model must request at least one tool (no text is generated). For example, {"any" : {}} .

type AsyncInvokeOutputDataConfig added in v1.22.0

type AsyncInvokeOutputDataConfig interface {
	// contains filtered or unexported methods
}

Asynchronous invocation output data settings.

The following types satisfy this interface:

AsyncInvokeOutputDataConfigMemberS3OutputDataConfig
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.AsyncInvokeOutputDataConfig
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.AsyncInvokeOutputDataConfigMemberS3OutputDataConfig:
		_ = v.Value // Value is types.AsyncInvokeS3OutputDataConfig

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type AsyncInvokeOutputDataConfigMemberS3OutputDataConfig added in v1.22.0

type AsyncInvokeOutputDataConfigMemberS3OutputDataConfig struct {
	Value AsyncInvokeS3OutputDataConfig
	// contains filtered or unexported fields
}

A storage location for the output data in an S3 bucket

type AsyncInvokeS3OutputDataConfig added in v1.22.0

type AsyncInvokeS3OutputDataConfig struct {

	// An object URI starting with s3:// .
	//
	// This member is required.
	S3Uri *string

	// If the bucket belongs to another AWS account, specify that account's ID.
	BucketOwner *string

	// A KMS encryption key ID.
	KmsKeyId *string
	// contains filtered or unexported fields
}

Asynchronous invocation output data settings.

type AsyncInvokeStatus added in v1.22.0

type AsyncInvokeStatus string
const (
	AsyncInvokeStatusInProgress AsyncInvokeStatus = "InProgress"
	AsyncInvokeStatusCompleted  AsyncInvokeStatus = "Completed"
	AsyncInvokeStatusFailed     AsyncInvokeStatus = "Failed"
)

Enum values for AsyncInvokeStatus

func (AsyncInvokeStatus) Values added in v1.22.0

Values returns all known values for AsyncInvokeStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type AsyncInvokeSummary added in v1.22.0

type AsyncInvokeSummary struct {

	// The invocation's ARN.
	//
	// This member is required.
	InvocationArn *string

	// The invoked model's ARN.
	//
	// This member is required.
	ModelArn *string

	// The invocation's output data settings.
	//
	// This member is required.
	OutputDataConfig AsyncInvokeOutputDataConfig

	// When the invocation was submitted.
	//
	// This member is required.
	SubmitTime *time.Time

	// The invocation's idempotency token.
	ClientRequestToken *string

	// When the invocation ended.
	EndTime *time.Time

	// An error message.
	FailureMessage *string

	// When the invocation was last modified.
	LastModifiedTime *time.Time

	// The invocation's status.
	Status AsyncInvokeStatus
	// contains filtered or unexported fields
}

A summary of an asynchronous invocation.

type AutoToolChoice added in v1.9.0

type AutoToolChoice struct {
	// contains filtered or unexported fields
}

The Model automatically decides if a tool should be called or whether to generate text instead. For example, {"auto" : {}} .

type CachePointBlock added in v1.28.0

type CachePointBlock struct {

	// Specifies the type of cache point within the CachePointBlock.
	//
	// This member is required.
	Type CachePointType
	// contains filtered or unexported fields
}

Defines a section of content to be cached for reuse in subsequent API calls.

type CachePointType added in v1.28.0

type CachePointType string
const (
	CachePointTypeDefault CachePointType = "default"
)

Enum values for CachePointType

func (CachePointType) Values added in v1.28.0

func (CachePointType) Values() []CachePointType

Values returns all known values for CachePointType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Citation added in v1.31.0

type Citation struct {

	// The precise location within the source document where the cited content can be
	// found, including character positions, page numbers, or chunk identifiers.
	Location CitationLocation

	// The specific content from the source document that was referenced or cited in
	// the generated response.
	SourceContent []CitationSourceContent

	// The title or identifier of the source document being cited.
	Title *string
	// contains filtered or unexported fields
}

Contains information about a citation that references a specific source document. Citations provide traceability between the model's generated response and the source documents that informed that response.

type CitationGeneratedContent added in v1.31.0

type CitationGeneratedContent interface {
	// contains filtered or unexported methods
}

Contains the generated text content that corresponds to or is supported by a citation from a source document.

The following types satisfy this interface:

CitationGeneratedContentMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.CitationGeneratedContent
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.CitationGeneratedContentMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type CitationGeneratedContentMemberText added in v1.31.0

type CitationGeneratedContentMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The text content that was generated by the model and is supported by the associated citation.

type CitationLocation added in v1.31.0

type CitationLocation interface {
	// contains filtered or unexported methods
}

Specifies the precise location within a source document where cited content can be found. This can include character-level positions, page numbers, or document chunks depending on the document type and indexing method.

The following types satisfy this interface:

CitationLocationMemberDocumentChar
CitationLocationMemberDocumentChunk
CitationLocationMemberDocumentPage
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.CitationLocation
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.CitationLocationMemberDocumentChar:
		_ = v.Value // Value is types.DocumentCharLocation

	case *types.CitationLocationMemberDocumentChunk:
		_ = v.Value // Value is types.DocumentChunkLocation

	case *types.CitationLocationMemberDocumentPage:
		_ = v.Value // Value is types.DocumentPageLocation

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type CitationLocationMemberDocumentChar added in v1.31.0

type CitationLocationMemberDocumentChar struct {
	Value DocumentCharLocation
	// contains filtered or unexported fields
}

The character-level location within the document where the cited content is found.

type CitationLocationMemberDocumentChunk added in v1.31.0

type CitationLocationMemberDocumentChunk struct {
	Value DocumentChunkLocation
	// contains filtered or unexported fields
}

The chunk-level location within the document where the cited content is found, typically used for documents that have been segmented into logical chunks.

type CitationLocationMemberDocumentPage added in v1.31.0

type CitationLocationMemberDocumentPage struct {
	Value DocumentPageLocation
	// contains filtered or unexported fields
}

The page-level location within the document where the cited content is found.

type CitationSourceContent added in v1.31.0

type CitationSourceContent interface {
	// contains filtered or unexported methods
}

Contains the actual text content from a source document that is being cited or referenced in the model's response.

The following types satisfy this interface:

CitationSourceContentMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.CitationSourceContent
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.CitationSourceContentMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type CitationSourceContentDelta added in v1.31.0

type CitationSourceContentDelta struct {

	// An incremental update to the text content from the source document that is
	// being cited.
	Text *string
	// contains filtered or unexported fields
}

Contains incremental updates to the source content text during streaming responses, allowing clients to build up the cited content progressively.

type CitationSourceContentMemberText added in v1.31.0

type CitationSourceContentMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The text content from the source document that is being cited.

type CitationsConfig added in v1.31.0

type CitationsConfig struct {

	// Specifies whether document citations should be included in the model's
	// response. When set to true, the model can generate citations that reference the
	// source documents used to inform the response.
	//
	// This member is required.
	Enabled *bool
	// contains filtered or unexported fields
}

Configuration settings for enabling and controlling document citations in Converse API responses. When enabled, the model can include citation information that links generated content back to specific source documents.

type CitationsContentBlock added in v1.31.0

type CitationsContentBlock struct {

	// An array of citations that reference the source documents used to generate the
	// associated content.
	Citations []Citation

	// The generated content that is supported by the associated citations.
	Content []CitationGeneratedContent
	// contains filtered or unexported fields
}

A content block that contains both generated text and associated citation information. This block type is returned when document citations are enabled, providing traceability between the generated content and the source documents that informed the response.

type CitationsDelta added in v1.31.0

type CitationsDelta struct {

	// Specifies the precise location within a source document where cited content can
	// be found. This can include character-level positions, page numbers, or document
	// chunks depending on the document type and indexing method.
	Location CitationLocation

	// The specific content from the source document that was referenced or cited in
	// the generated response.
	SourceContent []CitationSourceContentDelta

	// The title or identifier of the source document being cited.
	Title *string
	// contains filtered or unexported fields
}

Contains incremental updates to citation information during streaming responses. This allows clients to build up citation data progressively as the response is generated.

type ConflictException added in v1.22.0

type ConflictException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Error occurred because of a conflict while performing an operation.

func (*ConflictException) Error added in v1.22.0

func (e *ConflictException) Error() string

func (*ConflictException) ErrorCode added in v1.22.0

func (e *ConflictException) ErrorCode() string

func (*ConflictException) ErrorFault added in v1.22.0

func (e *ConflictException) ErrorFault() smithy.ErrorFault

func (*ConflictException) ErrorMessage added in v1.22.0

func (e *ConflictException) ErrorMessage() string

type ContentBlock added in v1.9.0

type ContentBlock interface {
	// contains filtered or unexported methods
}

A block of content for a message that you pass to, or receive from, a model with the Converseor ConverseStream API operations.

The following types satisfy this interface:

ContentBlockMemberCachePoint
ContentBlockMemberCitationsContent
ContentBlockMemberDocument
ContentBlockMemberGuardContent
ContentBlockMemberImage
ContentBlockMemberReasoningContent
ContentBlockMemberText
ContentBlockMemberToolResult
ContentBlockMemberToolUse
ContentBlockMemberVideo
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ContentBlockMemberCachePoint:
		_ = v.Value // Value is types.CachePointBlock

	case *types.ContentBlockMemberCitationsContent:
		_ = v.Value // Value is types.CitationsContentBlock

	case *types.ContentBlockMemberDocument:
		_ = v.Value // Value is types.DocumentBlock

	case *types.ContentBlockMemberGuardContent:
		_ = v.Value // Value is types.GuardrailConverseContentBlock

	case *types.ContentBlockMemberImage:
		_ = v.Value // Value is types.ImageBlock

	case *types.ContentBlockMemberReasoningContent:
		_ = v.Value // Value is types.ReasoningContentBlock

	case *types.ContentBlockMemberText:
		_ = v.Value // Value is string

	case *types.ContentBlockMemberToolResult:
		_ = v.Value // Value is types.ToolResultBlock

	case *types.ContentBlockMemberToolUse:
		_ = v.Value // Value is types.ToolUseBlock

	case *types.ContentBlockMemberVideo:
		_ = v.Value // Value is types.VideoBlock

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ContentBlockDelta added in v1.9.0

type ContentBlockDelta interface {
	// contains filtered or unexported methods
}

A block of content in a streaming response.

The following types satisfy this interface:

ContentBlockDeltaMemberCitation
ContentBlockDeltaMemberReasoningContent
ContentBlockDeltaMemberText
ContentBlockDeltaMemberToolUse
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ContentBlockDelta
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ContentBlockDeltaMemberCitation:
		_ = v.Value // Value is types.CitationsDelta

	case *types.ContentBlockDeltaMemberReasoningContent:
		_ = v.Value // Value is types.ReasoningContentBlockDelta

	case *types.ContentBlockDeltaMemberText:
		_ = v.Value // Value is string

	case *types.ContentBlockDeltaMemberToolUse:
		_ = v.Value // Value is types.ToolUseBlockDelta

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ContentBlockDeltaEvent added in v1.9.0

type ContentBlockDeltaEvent struct {

	// The block index for a content block delta event.
	//
	// This member is required.
	ContentBlockIndex *int32

	// The delta for a content block delta event.
	//
	// This member is required.
	Delta ContentBlockDelta
	// contains filtered or unexported fields
}

The content block delta event.

type ContentBlockDeltaMemberCitation added in v1.31.0

type ContentBlockDeltaMemberCitation struct {
	Value CitationsDelta
	// contains filtered or unexported fields
}

Incremental citation information that is streamed as part of the response generation process.

type ContentBlockDeltaMemberReasoningContent added in v1.25.0

type ContentBlockDeltaMemberReasoningContent struct {
	Value ReasoningContentBlockDelta
	// contains filtered or unexported fields
}

Contains content regarding the reasoning that is carried out by the model. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.

type ContentBlockDeltaMemberText added in v1.9.0

type ContentBlockDeltaMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The content text.

type ContentBlockDeltaMemberToolUse added in v1.9.0

type ContentBlockDeltaMemberToolUse struct {
	Value ToolUseBlockDelta
	// contains filtered or unexported fields
}

Information about a tool that the model is requesting to use.

type ContentBlockMemberCachePoint added in v1.28.0

type ContentBlockMemberCachePoint struct {
	Value CachePointBlock
	// contains filtered or unexported fields
}

CachePoint to include in the message.

type ContentBlockMemberCitationsContent added in v1.31.0

type ContentBlockMemberCitationsContent struct {
	Value CitationsContentBlock
	// contains filtered or unexported fields
}

A content block that contains both generated text and associated citation information, providing traceability between the response and source documents.

type ContentBlockMemberDocument added in v1.11.0

type ContentBlockMemberDocument struct {
	Value DocumentBlock
	// contains filtered or unexported fields
}

A document to include in the message.

type ContentBlockMemberGuardContent added in v1.10.0

type ContentBlockMemberGuardContent struct {
	Value GuardrailConverseContentBlock
	// contains filtered or unexported fields
}

Contains the content to assess with the guardrail. If you don't specify guardContent in a call to the Converse API, the guardrail (if passed in the Converse API) assesses the entire message.

For more information, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide.

type ContentBlockMemberImage added in v1.9.0

type ContentBlockMemberImage struct {
	Value ImageBlock
	// contains filtered or unexported fields
}

Image to include in the message.

This field is only supported by Anthropic Claude 3 models.

type ContentBlockMemberReasoningContent added in v1.25.0

type ContentBlockMemberReasoningContent struct {
	Value ReasoningContentBlock
	// contains filtered or unexported fields
}

Contains content regarding the reasoning that is carried out by the model. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.

type ContentBlockMemberText added in v1.9.0

type ContentBlockMemberText struct {
	Value string
	// contains filtered or unexported fields
}

Text to include in the message.

type ContentBlockMemberToolResult added in v1.9.0

type ContentBlockMemberToolResult struct {
	Value ToolResultBlock
	// contains filtered or unexported fields
}

The result for a tool request that a model makes.

type ContentBlockMemberToolUse added in v1.9.0

type ContentBlockMemberToolUse struct {
	Value ToolUseBlock
	// contains filtered or unexported fields
}

Information about a tool use request from a model.

type ContentBlockMemberVideo added in v1.22.0

type ContentBlockMemberVideo struct {
	Value VideoBlock
	// contains filtered or unexported fields
}

Video to include in the message.

type ContentBlockStart added in v1.9.0

type ContentBlockStart interface {
	// contains filtered or unexported methods
}

Content block start information.

The following types satisfy this interface:

ContentBlockStartMemberToolUse
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ContentBlockStart
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ContentBlockStartMemberToolUse:
		_ = v.Value // Value is types.ToolUseBlockStart

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ContentBlockStartEvent added in v1.9.0

type ContentBlockStartEvent struct {

	// The index for a content block start event.
	//
	// This member is required.
	ContentBlockIndex *int32

	// Start information about a content block start event.
	//
	// This member is required.
	Start ContentBlockStart
	// contains filtered or unexported fields
}

Content block start event.

type ContentBlockStartMemberToolUse added in v1.9.0

type ContentBlockStartMemberToolUse struct {
	Value ToolUseBlockStart
	// contains filtered or unexported fields
}

Information about a tool that the model is requesting to use.

type ContentBlockStopEvent added in v1.9.0

type ContentBlockStopEvent struct {

	// The index for a content block.
	//
	// This member is required.
	ContentBlockIndex *int32
	// contains filtered or unexported fields
}

A content block stop event.

type ConversationRole added in v1.9.0

type ConversationRole string
const (
	ConversationRoleUser      ConversationRole = "user"
	ConversationRoleAssistant ConversationRole = "assistant"
)

Enum values for ConversationRole

func (ConversationRole) Values added in v1.9.0

Values returns all known values for ConversationRole. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ConverseMetrics added in v1.9.0

type ConverseMetrics struct {

	// The latency of the call to Converse , in milliseconds.
	//
	// This member is required.
	LatencyMs *int64
	// contains filtered or unexported fields
}

Metrics for a call to Converse.

type ConverseOutput added in v1.9.0

type ConverseOutput interface {
	// contains filtered or unexported methods
}

The output from a call to Converse.

The following types satisfy this interface:

ConverseOutputMemberMessage
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ConverseOutput
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ConverseOutputMemberMessage:
		_ = v.Value // Value is types.Message

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ConverseOutputMemberMessage added in v1.9.0

type ConverseOutputMemberMessage struct {
	Value Message
	// contains filtered or unexported fields
}

The message that the model generates.

type ConverseStreamMetadataEvent added in v1.9.0

type ConverseStreamMetadataEvent struct {

	// The metrics for the conversation stream metadata event.
	//
	// This member is required.
	Metrics *ConverseStreamMetrics

	// Usage information for the conversation stream event.
	//
	// This member is required.
	Usage *TokenUsage

	// Model performance configuration metadata for the conversation stream event.
	PerformanceConfig *PerformanceConfiguration

	// The trace object in the response from [ConverseStream] that contains information about the
	// guardrail behavior.
	//
	// [ConverseStream]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html
	Trace *ConverseStreamTrace
	// contains filtered or unexported fields
}

A conversation stream metadata event.

type ConverseStreamMetrics added in v1.9.0

type ConverseStreamMetrics struct {

	// The latency for the streaming request, in milliseconds.
	//
	// This member is required.
	LatencyMs *int64
	// contains filtered or unexported fields
}

Metrics for the stream.

type ConverseStreamOutput added in v1.9.0

type ConverseStreamOutput interface {
	// contains filtered or unexported methods
}

The messages output stream

The following types satisfy this interface:

ConverseStreamOutputMemberContentBlockDelta
ConverseStreamOutputMemberContentBlockStart
ConverseStreamOutputMemberContentBlockStop
ConverseStreamOutputMemberMessageStart
ConverseStreamOutputMemberMessageStop
ConverseStreamOutputMemberMetadata
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ConverseStreamOutput
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ConverseStreamOutputMemberContentBlockDelta:
		_ = v.Value // Value is types.ContentBlockDeltaEvent

	case *types.ConverseStreamOutputMemberContentBlockStart:
		_ = v.Value // Value is types.ContentBlockStartEvent

	case *types.ConverseStreamOutputMemberContentBlockStop:
		_ = v.Value // Value is types.ContentBlockStopEvent

	case *types.ConverseStreamOutputMemberMessageStart:
		_ = v.Value // Value is types.MessageStartEvent

	case *types.ConverseStreamOutputMemberMessageStop:
		_ = v.Value // Value is types.MessageStopEvent

	case *types.ConverseStreamOutputMemberMetadata:
		_ = v.Value // Value is types.ConverseStreamMetadataEvent

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ConverseStreamOutputMemberContentBlockDelta added in v1.9.0

type ConverseStreamOutputMemberContentBlockDelta struct {
	Value ContentBlockDeltaEvent
	// contains filtered or unexported fields
}

The messages output content block delta.

type ConverseStreamOutputMemberContentBlockStart added in v1.9.0

type ConverseStreamOutputMemberContentBlockStart struct {
	Value ContentBlockStartEvent
	// contains filtered or unexported fields
}

Start information for a content block.

type ConverseStreamOutputMemberContentBlockStop added in v1.9.0

type ConverseStreamOutputMemberContentBlockStop struct {
	Value ContentBlockStopEvent
	// contains filtered or unexported fields
}

Stop information for a content block.

type ConverseStreamOutputMemberMessageStart added in v1.9.0

type ConverseStreamOutputMemberMessageStart struct {
	Value MessageStartEvent
	// contains filtered or unexported fields
}

Message start information.

type ConverseStreamOutputMemberMessageStop added in v1.9.0

type ConverseStreamOutputMemberMessageStop struct {
	Value MessageStopEvent
	// contains filtered or unexported fields
}

Message stop information.

type ConverseStreamOutputMemberMetadata added in v1.9.0

type ConverseStreamOutputMemberMetadata struct {
	Value ConverseStreamMetadataEvent
	// contains filtered or unexported fields
}

Metadata for the converse output stream.

type ConverseStreamTrace added in v1.10.0

type ConverseStreamTrace struct {

	// The guardrail trace object.
	Guardrail *GuardrailTraceAssessment

	// The request's prompt router.
	PromptRouter *PromptRouterTrace
	// contains filtered or unexported fields
}

The trace object in a response from ConverseStream. Currently, you can only trace guardrails.

type ConverseTokensRequest added in v1.37.0

type ConverseTokensRequest struct {

	// An array of messages to count tokens for.
	Messages []Message

	// The system content blocks to count tokens for. System content provides
	// instructions or context to the model about how it should behave or respond. The
	// token count will include any system content provided.
	System []SystemContentBlock
	// contains filtered or unexported fields
}

The inputs from a Converse API request for token counting.

This structure mirrors the input format for the Converse operation, allowing you to count tokens for conversation-based inference requests.

type ConverseTrace added in v1.10.0

type ConverseTrace struct {

	// The guardrail trace object.
	Guardrail *GuardrailTraceAssessment

	// The request's prompt router.
	PromptRouter *PromptRouterTrace
	// contains filtered or unexported fields
}

The trace object in a response from Converse. Currently, you can only trace guardrails.

type CountTokensInput added in v1.37.0

type CountTokensInput interface {
	// contains filtered or unexported methods
}

The input value for token counting. The value should be either an InvokeModel or Converse request body.

The following types satisfy this interface:

CountTokensInputMemberConverse
CountTokensInputMemberInvokeModel
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.CountTokensInput
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.CountTokensInputMemberConverse:
		_ = v.Value // Value is types.ConverseTokensRequest

	case *types.CountTokensInputMemberInvokeModel:
		_ = v.Value // Value is types.InvokeModelTokensRequest

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type CountTokensInputMemberConverse added in v1.37.0

type CountTokensInputMemberConverse struct {
	Value ConverseTokensRequest
	// contains filtered or unexported fields
}

A Converse request for which to count tokens. Use this field when you want to count tokens for a conversation-based input that would be sent to the Converse operation.

type CountTokensInputMemberInvokeModel added in v1.37.0

type CountTokensInputMemberInvokeModel struct {
	Value InvokeModelTokensRequest
	// contains filtered or unexported fields
}

An InvokeModel request for which to count tokens. Use this field when you want to count tokens for a raw text input that would be sent to the InvokeModel operation.

type DocumentBlock added in v1.11.0

type DocumentBlock struct {

	// A name for the document. The name can only contain the following characters:
	//
	//   - Alphanumeric characters
	//
	//   - Whitespace characters (no more than one in a row)
	//
	//   - Hyphens
	//
	//   - Parentheses
	//
	//   - Square brackets
	//
	// This field is vulnerable to prompt injections, because the model might
	// inadvertently interpret it as instructions. Therefore, we recommend that you
	// specify a neutral name.
	//
	// This member is required.
	Name *string

	// Contains the content of the document.
	//
	// This member is required.
	Source DocumentSource

	// Configuration settings that control how citations should be generated for this
	// specific document.
	Citations *CitationsConfig

	// Contextual information about how the document should be processed or
	// interpreted by the model when generating citations.
	Context *string

	// The format of a document, or its extension.
	Format DocumentFormat
	// contains filtered or unexported fields
}

A document to include in a message.

type DocumentCharLocation added in v1.31.0

type DocumentCharLocation struct {

	// The index of the document within the array of documents provided in the request.
	DocumentIndex *int32

	// The ending character position of the cited content within the document.
	End *int32

	// The starting character position of the cited content within the document.
	Start *int32
	// contains filtered or unexported fields
}

Specifies a character-level location within a document, providing precise positioning information for cited content using start and end character indices.

type DocumentChunkLocation added in v1.31.0

type DocumentChunkLocation struct {

	// The index of the document within the array of documents provided in the request.
	DocumentIndex *int32

	// The ending chunk identifier or index of the cited content within the document.
	End *int32

	// The starting chunk identifier or index of the cited content within the document.
	Start *int32
	// contains filtered or unexported fields
}

Specifies a chunk-level location within a document, providing positioning information for cited content using logical document segments or chunks.

type DocumentContentBlock added in v1.31.0

type DocumentContentBlock interface {
	// contains filtered or unexported methods
}

Contains the actual content of a document that can be processed by the model and potentially cited in the response.

The following types satisfy this interface:

DocumentContentBlockMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.DocumentContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.DocumentContentBlockMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type DocumentContentBlockMemberText added in v1.31.0

type DocumentContentBlockMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The text content of the document.

type DocumentFormat added in v1.11.0

type DocumentFormat string
const (
	DocumentFormatPdf  DocumentFormat = "pdf"
	DocumentFormatCsv  DocumentFormat = "csv"
	DocumentFormatDoc  DocumentFormat = "doc"
	DocumentFormatDocx DocumentFormat = "docx"
	DocumentFormatXls  DocumentFormat = "xls"
	DocumentFormatXlsx DocumentFormat = "xlsx"
	DocumentFormatHtml DocumentFormat = "html"
	DocumentFormatTxt  DocumentFormat = "txt"
	DocumentFormatMd   DocumentFormat = "md"
)

Enum values for DocumentFormat

func (DocumentFormat) Values added in v1.11.0

func (DocumentFormat) Values() []DocumentFormat

Values returns all known values for DocumentFormat. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DocumentPageLocation added in v1.31.0

type DocumentPageLocation struct {

	// The index of the document within the array of documents provided in the request.
	DocumentIndex *int32

	// The ending page number of the cited content within the document.
	End *int32

	// The starting page number of the cited content within the document.
	Start *int32
	// contains filtered or unexported fields
}

Specifies a page-level location within a document, providing positioning information for cited content using page numbers.

type DocumentSource added in v1.11.0

type DocumentSource interface {
	// contains filtered or unexported methods
}

Contains the content of a document.

The following types satisfy this interface:

DocumentSourceMemberBytes
DocumentSourceMemberContent
DocumentSourceMemberS3Location
DocumentSourceMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.DocumentSource
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.DocumentSourceMemberBytes:
		_ = v.Value // Value is []byte

	case *types.DocumentSourceMemberContent:
		_ = v.Value // Value is []types.DocumentContentBlock

	case *types.DocumentSourceMemberS3Location:
		_ = v.Value // Value is types.S3Location

	case *types.DocumentSourceMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type DocumentSourceMemberBytes added in v1.11.0

type DocumentSourceMemberBytes struct {
	Value []byte
	// contains filtered or unexported fields
}

The raw bytes for the document. If you use an Amazon Web Services SDK, you don't need to encode the bytes in base64.

type DocumentSourceMemberContent added in v1.31.0

type DocumentSourceMemberContent struct {
	Value []DocumentContentBlock
	// contains filtered or unexported fields
}

The structured content of the document source, which may include various content blocks such as text, images, or other document elements.

type DocumentSourceMemberS3Location added in v1.30.0

type DocumentSourceMemberS3Location struct {
	Value S3Location
	// contains filtered or unexported fields
}

The location of a document object in an Amazon S3 bucket. To see which models support S3 uploads, see Supported models and features for Converse.

type DocumentSourceMemberText added in v1.31.0

type DocumentSourceMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The text content of the document source.

type GuardrailAction added in v1.13.0

type GuardrailAction string
const (
	GuardrailActionNone                GuardrailAction = "NONE"
	GuardrailActionGuardrailIntervened GuardrailAction = "GUARDRAIL_INTERVENED"
)

Enum values for GuardrailAction

func (GuardrailAction) Values added in v1.13.0

func (GuardrailAction) Values() []GuardrailAction

Values returns all known values for GuardrailAction. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailAssessment added in v1.10.0

type GuardrailAssessment struct {

	// The automated reasoning policy assessment results, including logical validation
	// findings for the input content.
	AutomatedReasoningPolicy *GuardrailAutomatedReasoningPolicyAssessment

	// The content policy.
	ContentPolicy *GuardrailContentPolicyAssessment

	// The contextual grounding policy used for the guardrail assessment.
	ContextualGroundingPolicy *GuardrailContextualGroundingPolicyAssessment

	// The invocation metrics for the guardrail assessment.
	InvocationMetrics *GuardrailInvocationMetrics

	// The sensitive information policy.
	SensitiveInformationPolicy *GuardrailSensitiveInformationPolicyAssessment

	// The topic policy.
	TopicPolicy *GuardrailTopicPolicyAssessment

	// The word policy.
	WordPolicy *GuardrailWordPolicyAssessment
	// contains filtered or unexported fields
}

A behavior assessment of the guardrail policies used in a call to the Converse API.

type GuardrailAutomatedReasoningFinding added in v1.34.0

type GuardrailAutomatedReasoningFinding interface {
	// contains filtered or unexported methods
}

Represents a logical validation result from automated reasoning policy evaluation. The finding indicates whether claims in the input are logically valid, invalid, satisfiable, impossible, or have other logical issues.

The following types satisfy this interface:

GuardrailAutomatedReasoningFindingMemberImpossible
GuardrailAutomatedReasoningFindingMemberInvalid
GuardrailAutomatedReasoningFindingMemberNoTranslations
GuardrailAutomatedReasoningFindingMemberSatisfiable
GuardrailAutomatedReasoningFindingMemberTooComplex
GuardrailAutomatedReasoningFindingMemberTranslationAmbiguous
GuardrailAutomatedReasoningFindingMemberValid
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.GuardrailAutomatedReasoningFinding
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.GuardrailAutomatedReasoningFindingMemberImpossible:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningImpossibleFinding

	case *types.GuardrailAutomatedReasoningFindingMemberInvalid:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningInvalidFinding

	case *types.GuardrailAutomatedReasoningFindingMemberNoTranslations:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningNoTranslationsFinding

	case *types.GuardrailAutomatedReasoningFindingMemberSatisfiable:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningSatisfiableFinding

	case *types.GuardrailAutomatedReasoningFindingMemberTooComplex:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningTooComplexFinding

	case *types.GuardrailAutomatedReasoningFindingMemberTranslationAmbiguous:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningTranslationAmbiguousFinding

	case *types.GuardrailAutomatedReasoningFindingMemberValid:
		_ = v.Value // Value is types.GuardrailAutomatedReasoningValidFinding

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type GuardrailAutomatedReasoningFindingMemberImpossible added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberImpossible struct {
	Value GuardrailAutomatedReasoningImpossibleFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation determines that no valid logical conclusions can be drawn due to contradictions in the premises or policy rules themselves.

type GuardrailAutomatedReasoningFindingMemberInvalid added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberInvalid struct {
	Value GuardrailAutomatedReasoningInvalidFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation determines that the claims in the input are logically invalid and contradict the established premises or policy rules.

type GuardrailAutomatedReasoningFindingMemberNoTranslations added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberNoTranslations struct {
	Value GuardrailAutomatedReasoningNoTranslationsFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation cannot extract any relevant logical information from the input that can be validated against the policy rules.

type GuardrailAutomatedReasoningFindingMemberSatisfiable added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberSatisfiable struct {
	Value GuardrailAutomatedReasoningSatisfiableFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation determines that the claims in the input could be either true or false depending on additional assumptions not provided in the input context.

type GuardrailAutomatedReasoningFindingMemberTooComplex added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberTooComplex struct {
	Value GuardrailAutomatedReasoningTooComplexFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation cannot process the input due to its complexity or volume exceeding the system's processing capacity for logical analysis.

type GuardrailAutomatedReasoningFindingMemberTranslationAmbiguous added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberTranslationAmbiguous struct {
	Value GuardrailAutomatedReasoningTranslationAmbiguousFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation detects that the input has multiple valid logical interpretations, requiring additional context or clarification to proceed with validation.

type GuardrailAutomatedReasoningFindingMemberValid added in v1.34.0

type GuardrailAutomatedReasoningFindingMemberValid struct {
	Value GuardrailAutomatedReasoningValidFinding
	// contains filtered or unexported fields
}

Contains the result when the automated reasoning evaluation determines that the claims in the input are logically valid and definitively true based on the provided premises and policy rules.

type GuardrailAutomatedReasoningImpossibleFinding added in v1.34.0

type GuardrailAutomatedReasoningImpossibleFinding struct {

	// The automated reasoning policy rules that contradict the claims and/or premises
	// in the input.
	ContradictingRules []GuardrailAutomatedReasoningRule

	// Indication of a logic issue with the translation without needing to consider
	// the automated reasoning policy rules.
	LogicWarning *GuardrailAutomatedReasoningLogicWarning

	// The logical translation of the input that this finding evaluates.
	Translation *GuardrailAutomatedReasoningTranslation
	// contains filtered or unexported fields
}

Indicates that no valid claims can be made due to logical contradictions in the premises or rules.

type GuardrailAutomatedReasoningInputTextReference added in v1.34.0

type GuardrailAutomatedReasoningInputTextReference struct {

	// The specific text from the original input that this reference points to.
	Text *string
	// contains filtered or unexported fields
}

References a portion of the original input text that corresponds to logical elements.

type GuardrailAutomatedReasoningInvalidFinding added in v1.34.0

type GuardrailAutomatedReasoningInvalidFinding struct {

	// The automated reasoning policy rules that contradict the claims in the input.
	ContradictingRules []GuardrailAutomatedReasoningRule

	// Indication of a logic issue with the translation without needing to consider
	// the automated reasoning policy rules.
	LogicWarning *GuardrailAutomatedReasoningLogicWarning

	// The logical translation of the input that this finding invalidates.
	Translation *GuardrailAutomatedReasoningTranslation
	// contains filtered or unexported fields
}

Indicates that the claims are logically false and contradictory to the established rules or premises.

type GuardrailAutomatedReasoningLogicWarning added in v1.34.0

type GuardrailAutomatedReasoningLogicWarning struct {

	// The logical statements that are validated while assuming the policy and
	// premises.
	Claims []GuardrailAutomatedReasoningStatement

	// The logical statements that serve as premises under which the claims are
	// validated.
	Premises []GuardrailAutomatedReasoningStatement

	// The category of the detected logical issue, such as statements that are always
	// true or always false.
	Type GuardrailAutomatedReasoningLogicWarningType
	// contains filtered or unexported fields
}

Identifies logical issues in the translated statements that exist independent of any policy rules, such as statements that are always true or always false.

type GuardrailAutomatedReasoningLogicWarningType added in v1.34.0

type GuardrailAutomatedReasoningLogicWarningType string
const (
	GuardrailAutomatedReasoningLogicWarningTypeAlwaysFalse GuardrailAutomatedReasoningLogicWarningType = "ALWAYS_FALSE"
	GuardrailAutomatedReasoningLogicWarningTypeAlwaysTrue  GuardrailAutomatedReasoningLogicWarningType = "ALWAYS_TRUE"
)

Enum values for GuardrailAutomatedReasoningLogicWarningType

func (GuardrailAutomatedReasoningLogicWarningType) Values added in v1.34.0

Values returns all known values for GuardrailAutomatedReasoningLogicWarningType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailAutomatedReasoningNoTranslationsFinding added in v1.34.0

type GuardrailAutomatedReasoningNoTranslationsFinding struct {
	// contains filtered or unexported fields
}

Indicates that no relevant logical information could be extracted from the input for validation.

type GuardrailAutomatedReasoningPolicyAssessment added in v1.34.0

type GuardrailAutomatedReasoningPolicyAssessment struct {

	// List of logical validation results produced by evaluating the input content
	// against automated reasoning policies.
	Findings []GuardrailAutomatedReasoningFinding
	// contains filtered or unexported fields
}

Contains the results of automated reasoning policy evaluation, including logical findings about the validity of claims made in the input content.

type GuardrailAutomatedReasoningRule added in v1.34.0

type GuardrailAutomatedReasoningRule struct {

	// The unique identifier of the automated reasoning rule.
	Identifier *string

	// The ARN of the automated reasoning policy version that contains this rule.
	PolicyVersionArn *string
	// contains filtered or unexported fields
}

References a specific automated reasoning policy rule that was applied during evaluation.

type GuardrailAutomatedReasoningSatisfiableFinding added in v1.34.0

type GuardrailAutomatedReasoningSatisfiableFinding struct {

	// An example scenario demonstrating how the claims could be logically false.
	ClaimsFalseScenario *GuardrailAutomatedReasoningScenario

	// An example scenario demonstrating how the claims could be logically true.
	ClaimsTrueScenario *GuardrailAutomatedReasoningScenario

	// Indication of a logic issue with the translation without needing to consider
	// the automated reasoning policy rules.
	LogicWarning *GuardrailAutomatedReasoningLogicWarning

	// The logical translation of the input that this finding evaluates.
	Translation *GuardrailAutomatedReasoningTranslation
	// contains filtered or unexported fields
}

Indicates that the claims could be either true or false depending on additional assumptions not provided in the input.

type GuardrailAutomatedReasoningScenario added in v1.34.0

type GuardrailAutomatedReasoningScenario struct {

	// List of logical assignments and statements that define this scenario.
	Statements []GuardrailAutomatedReasoningStatement
	// contains filtered or unexported fields
}

Represents a logical scenario where claims can be evaluated as true or false, containing specific logical assignments.

type GuardrailAutomatedReasoningStatement added in v1.34.0

type GuardrailAutomatedReasoningStatement struct {

	// The formal logical representation of the statement.
	Logic *string

	// The natural language explanation of the logical statement.
	NaturalLanguage *string
	// contains filtered or unexported fields
}

A logical statement that includes both formal logic representation and natural language explanation.

type GuardrailAutomatedReasoningTooComplexFinding added in v1.34.0

type GuardrailAutomatedReasoningTooComplexFinding struct {
	// contains filtered or unexported fields
}

Indicates that the input exceeds the processing capacity due to the volume or complexity of the logical information.

type GuardrailAutomatedReasoningTranslation added in v1.34.0

type GuardrailAutomatedReasoningTranslation struct {

	// The logical statements that are being validated against the premises and policy
	// rules.
	Claims []GuardrailAutomatedReasoningStatement

	// A confidence score between 0 and 1 indicating how certain the system is about
	// the logical translation.
	Confidence *float64

	// The logical statements that serve as the foundation or assumptions for the
	// claims.
	Premises []GuardrailAutomatedReasoningStatement

	// References to portions of the original input text that correspond to the claims
	// but could not be fully translated.
	UntranslatedClaims []GuardrailAutomatedReasoningInputTextReference

	// References to portions of the original input text that correspond to the
	// premises but could not be fully translated.
	UntranslatedPremises []GuardrailAutomatedReasoningInputTextReference
	// contains filtered or unexported fields
}

Contains the logical translation of natural language input into formal logical statements, including premises, claims, and confidence scores.

type GuardrailAutomatedReasoningTranslationAmbiguousFinding added in v1.34.0

type GuardrailAutomatedReasoningTranslationAmbiguousFinding struct {

	// Scenarios showing how the different translation options differ in meaning.
	DifferenceScenarios []GuardrailAutomatedReasoningScenario

	// Different logical interpretations that were detected during translation of the
	// input.
	Options []GuardrailAutomatedReasoningTranslationOption
	// contains filtered or unexported fields
}

Indicates that the input has multiple valid logical interpretations, requiring additional context or clarification.

type GuardrailAutomatedReasoningTranslationOption added in v1.34.0

type GuardrailAutomatedReasoningTranslationOption struct {

	// Example translations that provide this possible interpretation of the input.
	Translations []GuardrailAutomatedReasoningTranslation
	// contains filtered or unexported fields
}

Represents one possible logical interpretation of ambiguous input content.

type GuardrailAutomatedReasoningValidFinding added in v1.34.0

type GuardrailAutomatedReasoningValidFinding struct {

	// An example scenario demonstrating how the claims are logically true.
	ClaimsTrueScenario *GuardrailAutomatedReasoningScenario

	// Indication of a logic issue with the translation without needing to consider
	// the automated reasoning policy rules.
	LogicWarning *GuardrailAutomatedReasoningLogicWarning

	// The automated reasoning policy rules that support why this result is considered
	// valid.
	SupportingRules []GuardrailAutomatedReasoningRule

	// The logical translation of the input that this finding validates.
	Translation *GuardrailAutomatedReasoningTranslation
	// contains filtered or unexported fields
}

Indicates that the claims are definitively true and logically implied by the premises, with no possible alternative interpretations.

type GuardrailConfiguration added in v1.10.0

type GuardrailConfiguration struct {

	// The identifier for the guardrail.
	//
	// This member is required.
	GuardrailIdentifier *string

	// The version of the guardrail.
	//
	// This member is required.
	GuardrailVersion *string

	// The trace behavior for the guardrail.
	Trace GuardrailTrace
	// contains filtered or unexported fields
}

Configuration information for a guardrail that you use with the Converse operation.

type GuardrailContentBlock added in v1.13.0

type GuardrailContentBlock interface {
	// contains filtered or unexported methods
}

The content block to be evaluated by the guardrail.

The following types satisfy this interface:

GuardrailContentBlockMemberImage
GuardrailContentBlockMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.GuardrailContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.GuardrailContentBlockMemberImage:
		_ = v.Value // Value is types.GuardrailImageBlock

	case *types.GuardrailContentBlockMemberText:
		_ = v.Value // Value is types.GuardrailTextBlock

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type GuardrailContentBlockMemberImage added in v1.23.0

type GuardrailContentBlockMemberImage struct {
	Value GuardrailImageBlock
	// contains filtered or unexported fields
}

Image within guardrail content block to be evaluated by the guardrail.

type GuardrailContentBlockMemberText added in v1.13.0

type GuardrailContentBlockMemberText struct {
	Value GuardrailTextBlock
	// contains filtered or unexported fields
}

Text within content block to be evaluated by the guardrail.

type GuardrailContentFilter added in v1.10.0

type GuardrailContentFilter struct {

	// The guardrail action.
	//
	// This member is required.
	Action GuardrailContentPolicyAction

	// The guardrail confidence.
	//
	// This member is required.
	Confidence GuardrailContentFilterConfidence

	// The guardrail type.
	//
	// This member is required.
	Type GuardrailContentFilterType

	// Indicates whether content that breaches the guardrail configuration is detected.
	Detected *bool

	// The filter strength setting for the guardrail content filter.
	FilterStrength GuardrailContentFilterStrength
	// contains filtered or unexported fields
}

The content filter for a guardrail.

type GuardrailContentFilterConfidence added in v1.10.0

type GuardrailContentFilterConfidence string
const (
	GuardrailContentFilterConfidenceNone   GuardrailContentFilterConfidence = "NONE"
	GuardrailContentFilterConfidenceLow    GuardrailContentFilterConfidence = "LOW"
	GuardrailContentFilterConfidenceMedium GuardrailContentFilterConfidence = "MEDIUM"
	GuardrailContentFilterConfidenceHigh   GuardrailContentFilterConfidence = "HIGH"
)

Enum values for GuardrailContentFilterConfidence

func (GuardrailContentFilterConfidence) Values added in v1.10.0

Values returns all known values for GuardrailContentFilterConfidence. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContentFilterStrength added in v1.18.0

type GuardrailContentFilterStrength string
const (
	GuardrailContentFilterStrengthNone   GuardrailContentFilterStrength = "NONE"
	GuardrailContentFilterStrengthLow    GuardrailContentFilterStrength = "LOW"
	GuardrailContentFilterStrengthMedium GuardrailContentFilterStrength = "MEDIUM"
	GuardrailContentFilterStrengthHigh   GuardrailContentFilterStrength = "HIGH"
)

Enum values for GuardrailContentFilterStrength

func (GuardrailContentFilterStrength) Values added in v1.18.0

Values returns all known values for GuardrailContentFilterStrength. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContentFilterType added in v1.10.0

type GuardrailContentFilterType string
const (
	GuardrailContentFilterTypeInsults      GuardrailContentFilterType = "INSULTS"
	GuardrailContentFilterTypeHate         GuardrailContentFilterType = "HATE"
	GuardrailContentFilterTypeSexual       GuardrailContentFilterType = "SEXUAL"
	GuardrailContentFilterTypeViolence     GuardrailContentFilterType = "VIOLENCE"
	GuardrailContentFilterTypeMisconduct   GuardrailContentFilterType = "MISCONDUCT"
	GuardrailContentFilterTypePromptAttack GuardrailContentFilterType = "PROMPT_ATTACK"
)

Enum values for GuardrailContentFilterType

func (GuardrailContentFilterType) Values added in v1.10.0

Values returns all known values for GuardrailContentFilterType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContentPolicyAction added in v1.10.0

type GuardrailContentPolicyAction string
const (
	GuardrailContentPolicyActionBlocked GuardrailContentPolicyAction = "BLOCKED"
	GuardrailContentPolicyActionNone    GuardrailContentPolicyAction = "NONE"
)

Enum values for GuardrailContentPolicyAction

func (GuardrailContentPolicyAction) Values added in v1.10.0

Values returns all known values for GuardrailContentPolicyAction. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContentPolicyAssessment added in v1.10.0

type GuardrailContentPolicyAssessment struct {

	// The content policy filters.
	//
	// This member is required.
	Filters []GuardrailContentFilter
	// contains filtered or unexported fields
}

An assessment of a content policy for a guardrail.

type GuardrailContentQualifier added in v1.13.0

type GuardrailContentQualifier string
const (
	GuardrailContentQualifierGroundingSource GuardrailContentQualifier = "grounding_source"
	GuardrailContentQualifierQuery           GuardrailContentQualifier = "query"
	GuardrailContentQualifierGuardContent    GuardrailContentQualifier = "guard_content"
)

Enum values for GuardrailContentQualifier

func (GuardrailContentQualifier) Values added in v1.13.0

Values returns all known values for GuardrailContentQualifier. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContentSource added in v1.13.0

type GuardrailContentSource string
const (
	GuardrailContentSourceInput  GuardrailContentSource = "INPUT"
	GuardrailContentSourceOutput GuardrailContentSource = "OUTPUT"
)

Enum values for GuardrailContentSource

func (GuardrailContentSource) Values added in v1.13.0

Values returns all known values for GuardrailContentSource. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContextualGroundingFilter added in v1.13.0

type GuardrailContextualGroundingFilter struct {

	// The action performed by the guardrails contextual grounding filter.
	//
	// This member is required.
	Action GuardrailContextualGroundingPolicyAction

	// The score generated by contextual grounding filter.
	//
	// This member is required.
	Score *float64

	// The threshold used by contextual grounding filter to determine whether the
	// content is grounded or not.
	//
	// This member is required.
	Threshold *float64

	// The contextual grounding filter type.
	//
	// This member is required.
	Type GuardrailContextualGroundingFilterType

	// Indicates whether content that fails the contextual grounding evaluation
	// (grounding or relevance score less than the corresponding threshold) was
	// detected.
	Detected *bool
	// contains filtered or unexported fields
}

The details for the guardrails contextual grounding filter.

type GuardrailContextualGroundingFilterType added in v1.13.0

type GuardrailContextualGroundingFilterType string
const (
	GuardrailContextualGroundingFilterTypeGrounding GuardrailContextualGroundingFilterType = "GROUNDING"
	GuardrailContextualGroundingFilterTypeRelevance GuardrailContextualGroundingFilterType = "RELEVANCE"
)

Enum values for GuardrailContextualGroundingFilterType

func (GuardrailContextualGroundingFilterType) Values added in v1.13.0

Values returns all known values for GuardrailContextualGroundingFilterType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContextualGroundingPolicyAction added in v1.13.0

type GuardrailContextualGroundingPolicyAction string
const (
	GuardrailContextualGroundingPolicyActionBlocked GuardrailContextualGroundingPolicyAction = "BLOCKED"
	GuardrailContextualGroundingPolicyActionNone    GuardrailContextualGroundingPolicyAction = "NONE"
)

Enum values for GuardrailContextualGroundingPolicyAction

func (GuardrailContextualGroundingPolicyAction) Values added in v1.13.0

Values returns all known values for GuardrailContextualGroundingPolicyAction. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailContextualGroundingPolicyAssessment added in v1.13.0

type GuardrailContextualGroundingPolicyAssessment struct {

	// The filter details for the guardrails contextual grounding filter.
	Filters []GuardrailContextualGroundingFilter
	// contains filtered or unexported fields
}

The policy assessment details for the guardrails contextual grounding filter.

type GuardrailConverseContentBlock added in v1.10.0

type GuardrailConverseContentBlock interface {
	// contains filtered or unexported methods
}

A content block for selective guarding with the Converse or ConverseStream API operations.

The following types satisfy this interface:

GuardrailConverseContentBlockMemberImage
GuardrailConverseContentBlockMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.GuardrailConverseContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.GuardrailConverseContentBlockMemberImage:
		_ = v.Value // Value is types.GuardrailConverseImageBlock

	case *types.GuardrailConverseContentBlockMemberText:
		_ = v.Value // Value is types.GuardrailConverseTextBlock

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type GuardrailConverseContentBlockMemberImage added in v1.23.0

type GuardrailConverseContentBlockMemberImage struct {
	Value GuardrailConverseImageBlock
	// contains filtered or unexported fields
}

Image within converse content block to be evaluated by the guardrail.

type GuardrailConverseContentBlockMemberText added in v1.10.0

type GuardrailConverseContentBlockMemberText struct {
	Value GuardrailConverseTextBlock
	// contains filtered or unexported fields
}

The text to guard.

type GuardrailConverseContentQualifier added in v1.13.0

type GuardrailConverseContentQualifier string
const (
	GuardrailConverseContentQualifierGroundingSource GuardrailConverseContentQualifier = "grounding_source"
	GuardrailConverseContentQualifierQuery           GuardrailConverseContentQualifier = "query"
	GuardrailConverseContentQualifierGuardContent    GuardrailConverseContentQualifier = "guard_content"
)

Enum values for GuardrailConverseContentQualifier

func (GuardrailConverseContentQualifier) Values added in v1.13.0

Values returns all known values for GuardrailConverseContentQualifier. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailConverseImageBlock added in v1.23.0

type GuardrailConverseImageBlock struct {

	// The format details for the image type of the guardrail converse image block.
	//
	// This member is required.
	Format GuardrailConverseImageFormat

	// The image source (image bytes) of the guardrail converse image block.
	//
	// This member is required.
	Source GuardrailConverseImageSource
	// contains filtered or unexported fields
}

An image block that contains images that you want to assess with a guardrail.

type GuardrailConverseImageFormat added in v1.23.0

type GuardrailConverseImageFormat string
const (
	GuardrailConverseImageFormatPng  GuardrailConverseImageFormat = "png"
	GuardrailConverseImageFormatJpeg GuardrailConverseImageFormat = "jpeg"
)

Enum values for GuardrailConverseImageFormat

func (GuardrailConverseImageFormat) Values added in v1.23.0

Values returns all known values for GuardrailConverseImageFormat. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailConverseImageSource added in v1.23.0

type GuardrailConverseImageSource interface {
	// contains filtered or unexported methods
}

The image source (image bytes) of the guardrail converse image source.

The following types satisfy this interface:

GuardrailConverseImageSourceMemberBytes
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.GuardrailConverseImageSource
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.GuardrailConverseImageSourceMemberBytes:
		_ = v.Value // Value is []byte

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type GuardrailConverseImageSourceMemberBytes added in v1.23.0

type GuardrailConverseImageSourceMemberBytes struct {
	Value []byte
	// contains filtered or unexported fields
}

The raw image bytes for the image.

type GuardrailConverseTextBlock added in v1.10.0

type GuardrailConverseTextBlock struct {

	// The text that you want to guard.
	//
	// This member is required.
	Text *string

	// The qualifier details for the guardrails contextual grounding filter.
	Qualifiers []GuardrailConverseContentQualifier
	// contains filtered or unexported fields
}

A text block that contains text that you want to assess with a guardrail. For more information, see GuardrailConverseContentBlock.

type GuardrailCoverage added in v1.18.0

type GuardrailCoverage struct {

	// The guardrail coverage for images (the number of images that guardrails
	// guarded).
	Images *GuardrailImageCoverage

	// The text characters of the guardrail coverage details.
	TextCharacters *GuardrailTextCharactersCoverage
	// contains filtered or unexported fields
}

The action of the guardrail coverage details.

type GuardrailCustomWord added in v1.10.0

type GuardrailCustomWord struct {

	// The action for the custom word.
	//
	// This member is required.
	Action GuardrailWordPolicyAction

	// The match for the custom word.
	//
	// This member is required.
	Match *string

	// Indicates whether custom word content that breaches the guardrail configuration
	// is detected.
	Detected *bool
	// contains filtered or unexported fields
}

A custom word configured in a guardrail.

type GuardrailImageBlock added in v1.23.0

type GuardrailImageBlock struct {

	// The format details for the file type of the image blocked by the guardrail.
	//
	// This member is required.
	Format GuardrailImageFormat

	// The image source (image bytes) details of the image blocked by the guardrail.
	//
	// This member is required.
	Source GuardrailImageSource
	// contains filtered or unexported fields
}

Contain an image which user wants guarded. This block is accepted by the guardrails independent API.

type GuardrailImageCoverage added in v1.23.0

type GuardrailImageCoverage struct {

	// The count (integer) of images guardrails guarded.
	Guarded *int32

	// Represents the total number of images (integer) that were in the request
	// (guarded and unguarded).
	Total *int32
	// contains filtered or unexported fields
}

The details of the guardrail image coverage.

type GuardrailImageFormat added in v1.23.0

type GuardrailImageFormat string
const (
	GuardrailImageFormatPng  GuardrailImageFormat = "png"
	GuardrailImageFormatJpeg GuardrailImageFormat = "jpeg"
)

Enum values for GuardrailImageFormat

func (GuardrailImageFormat) Values added in v1.23.0

Values returns all known values for GuardrailImageFormat. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailImageSource added in v1.23.0

type GuardrailImageSource interface {
	// contains filtered or unexported methods
}

The image source (image bytes) of the guardrail image source. Object used in independent api.

The following types satisfy this interface:

GuardrailImageSourceMemberBytes
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.GuardrailImageSource
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.GuardrailImageSourceMemberBytes:
		_ = v.Value // Value is []byte

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type GuardrailImageSourceMemberBytes added in v1.23.0

type GuardrailImageSourceMemberBytes struct {
	Value []byte
	// contains filtered or unexported fields
}

The bytes details of the guardrail image source. Object used in independent api.

type GuardrailInvocationMetrics added in v1.18.0

type GuardrailInvocationMetrics struct {

	// The coverage details for the guardrail invocation metrics.
	GuardrailCoverage *GuardrailCoverage

	// The processing latency details for the guardrail invocation metrics.
	GuardrailProcessingLatency *int64

	// The usage details for the guardrail invocation metrics.
	Usage *GuardrailUsage
	// contains filtered or unexported fields
}

The invocation metrics for the guardrail.

type GuardrailManagedWord added in v1.10.0

type GuardrailManagedWord struct {

	// The action for the managed word.
	//
	// This member is required.
	Action GuardrailWordPolicyAction

	// The match for the managed word.
	//
	// This member is required.
	Match *string

	// The type for the managed word.
	//
	// This member is required.
	Type GuardrailManagedWordType

	// Indicates whether managed word content that breaches the guardrail
	// configuration is detected.
	Detected *bool
	// contains filtered or unexported fields
}

A managed word configured in a guardrail.

type GuardrailManagedWordType added in v1.10.0

type GuardrailManagedWordType string
const (
	GuardrailManagedWordTypeProfanity GuardrailManagedWordType = "PROFANITY"
)

Enum values for GuardrailManagedWordType

func (GuardrailManagedWordType) Values added in v1.10.0

Values returns all known values for GuardrailManagedWordType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailOutputContent added in v1.13.0

type GuardrailOutputContent struct {

	// The specific text for the output content produced by the guardrail.
	Text *string
	// contains filtered or unexported fields
}

The output content produced by the guardrail.

type GuardrailOutputScope added in v1.29.0

type GuardrailOutputScope string
const (
	GuardrailOutputScopeInterventions GuardrailOutputScope = "INTERVENTIONS"
	GuardrailOutputScopeFull          GuardrailOutputScope = "FULL"
)

Enum values for GuardrailOutputScope

func (GuardrailOutputScope) Values added in v1.29.0

Values returns all known values for GuardrailOutputScope. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailPiiEntityFilter added in v1.10.0

type GuardrailPiiEntityFilter struct {

	// The PII entity filter action.
	//
	// This member is required.
	Action GuardrailSensitiveInformationPolicyAction

	// The PII entity filter match.
	//
	// This member is required.
	Match *string

	// The PII entity filter type.
	//
	// This member is required.
	Type GuardrailPiiEntityType

	// Indicates whether personally identifiable information (PII) that breaches the
	// guardrail configuration is detected.
	Detected *bool
	// contains filtered or unexported fields
}

A Personally Identifiable Information (PII) entity configured in a guardrail.

type GuardrailPiiEntityType added in v1.10.0

type GuardrailPiiEntityType string
const (
	GuardrailPiiEntityTypeAddress                             GuardrailPiiEntityType = "ADDRESS"
	GuardrailPiiEntityTypeAge                                 GuardrailPiiEntityType = "AGE"
	GuardrailPiiEntityTypeAwsAccessKey                        GuardrailPiiEntityType = "AWS_ACCESS_KEY"
	GuardrailPiiEntityTypeAwsSecretKey                        GuardrailPiiEntityType = "AWS_SECRET_KEY"
	GuardrailPiiEntityTypeCaHealthNumber                      GuardrailPiiEntityType = "CA_HEALTH_NUMBER"
	GuardrailPiiEntityTypeCaSocialInsuranceNumber             GuardrailPiiEntityType = "CA_SOCIAL_INSURANCE_NUMBER"
	GuardrailPiiEntityTypeCreditDebitCardCvv                  GuardrailPiiEntityType = "CREDIT_DEBIT_CARD_CVV"
	GuardrailPiiEntityTypeCreditDebitCardExpiry               GuardrailPiiEntityType = "CREDIT_DEBIT_CARD_EXPIRY"
	GuardrailPiiEntityTypeCreditDebitCardNumber               GuardrailPiiEntityType = "CREDIT_DEBIT_CARD_NUMBER"
	GuardrailPiiEntityTypeDriverId                            GuardrailPiiEntityType = "DRIVER_ID"
	GuardrailPiiEntityTypeEmail                               GuardrailPiiEntityType = "EMAIL"
	GuardrailPiiEntityTypeInternationalBankAccountNumber      GuardrailPiiEntityType = "INTERNATIONAL_BANK_ACCOUNT_NUMBER"
	GuardrailPiiEntityTypeIpAddress                           GuardrailPiiEntityType = "IP_ADDRESS"
	GuardrailPiiEntityTypeLicensePlate                        GuardrailPiiEntityType = "LICENSE_PLATE"
	GuardrailPiiEntityTypeMacAddress                          GuardrailPiiEntityType = "MAC_ADDRESS"
	GuardrailPiiEntityTypeName                                GuardrailPiiEntityType = "NAME"
	GuardrailPiiEntityTypePassword                            GuardrailPiiEntityType = "PASSWORD"
	GuardrailPiiEntityTypePhone                               GuardrailPiiEntityType = "PHONE"
	GuardrailPiiEntityTypePin                                 GuardrailPiiEntityType = "PIN"
	GuardrailPiiEntityTypeSwiftCode                           GuardrailPiiEntityType = "SWIFT_CODE"
	GuardrailPiiEntityTypeUkNationalHealthServiceNumber       GuardrailPiiEntityType = "UK_NATIONAL_HEALTH_SERVICE_NUMBER"
	GuardrailPiiEntityTypeUkNationalInsuranceNumber           GuardrailPiiEntityType = "UK_NATIONAL_INSURANCE_NUMBER"
	GuardrailPiiEntityTypeUkUniqueTaxpayerReferenceNumber     GuardrailPiiEntityType = "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER"
	GuardrailPiiEntityTypeUrl                                 GuardrailPiiEntityType = "URL"
	GuardrailPiiEntityTypeUsername                            GuardrailPiiEntityType = "USERNAME"
	GuardrailPiiEntityTypeUsBankAccountNumber                 GuardrailPiiEntityType = "US_BANK_ACCOUNT_NUMBER"
	GuardrailPiiEntityTypeUsBankRoutingNumber                 GuardrailPiiEntityType = "US_BANK_ROUTING_NUMBER"
	GuardrailPiiEntityTypeUsIndividualTaxIdentificationNumber GuardrailPiiEntityType = "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER"
	GuardrailPiiEntityTypeUsPassportNumber                    GuardrailPiiEntityType = "US_PASSPORT_NUMBER"
	GuardrailPiiEntityTypeUsSocialSecurityNumber              GuardrailPiiEntityType = "US_SOCIAL_SECURITY_NUMBER"
	GuardrailPiiEntityTypeVehicleIdentificationNumber         GuardrailPiiEntityType = "VEHICLE_IDENTIFICATION_NUMBER"
)

Enum values for GuardrailPiiEntityType

func (GuardrailPiiEntityType) Values added in v1.10.0

Values returns all known values for GuardrailPiiEntityType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailRegexFilter added in v1.10.0

type GuardrailRegexFilter struct {

	// The region filter action.
	//
	// This member is required.
	Action GuardrailSensitiveInformationPolicyAction

	// Indicates whether custom regex entities that breach the guardrail configuration
	// are detected.
	Detected *bool

	// The regesx filter match.
	Match *string

	// The regex filter name.
	Name *string

	// The regex query.
	Regex *string
	// contains filtered or unexported fields
}

A Regex filter configured in a guardrail.

type GuardrailSensitiveInformationPolicyAction added in v1.10.0

type GuardrailSensitiveInformationPolicyAction string
const (
	GuardrailSensitiveInformationPolicyActionAnonymized GuardrailSensitiveInformationPolicyAction = "ANONYMIZED"
	GuardrailSensitiveInformationPolicyActionBlocked    GuardrailSensitiveInformationPolicyAction = "BLOCKED"
	GuardrailSensitiveInformationPolicyActionNone       GuardrailSensitiveInformationPolicyAction = "NONE"
)

Enum values for GuardrailSensitiveInformationPolicyAction

func (GuardrailSensitiveInformationPolicyAction) Values added in v1.10.0

Values returns all known values for GuardrailSensitiveInformationPolicyAction. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailSensitiveInformationPolicyAssessment added in v1.10.0

type GuardrailSensitiveInformationPolicyAssessment struct {

	// The PII entities in the assessment.
	//
	// This member is required.
	PiiEntities []GuardrailPiiEntityFilter

	// The regex queries in the assessment.
	//
	// This member is required.
	Regexes []GuardrailRegexFilter
	// contains filtered or unexported fields
}

The assessment for aPersonally Identifiable Information (PII) policy.

type GuardrailStreamConfiguration added in v1.10.0

type GuardrailStreamConfiguration struct {

	// The identifier for the guardrail.
	//
	// This member is required.
	GuardrailIdentifier *string

	// The version of the guardrail.
	//
	// This member is required.
	GuardrailVersion *string

	// The processing mode.
	//
	// The processing mode. For more information, see Configure streaming response
	// behavior in the Amazon Bedrock User Guide.
	StreamProcessingMode GuardrailStreamProcessingMode

	// The trace behavior for the guardrail.
	Trace GuardrailTrace
	// contains filtered or unexported fields
}

Configuration information for a guardrail that you use with the ConverseStream action.

type GuardrailStreamProcessingMode added in v1.10.0

type GuardrailStreamProcessingMode string
const (
	GuardrailStreamProcessingModeSync  GuardrailStreamProcessingMode = "sync"
	GuardrailStreamProcessingModeAsync GuardrailStreamProcessingMode = "async"
)

Enum values for GuardrailStreamProcessingMode

func (GuardrailStreamProcessingMode) Values added in v1.10.0

Values returns all known values for GuardrailStreamProcessingMode. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailTextBlock added in v1.13.0

type GuardrailTextBlock struct {

	// The input text details to be evaluated by the guardrail.
	//
	// This member is required.
	Text *string

	// The qualifiers describing the text block.
	Qualifiers []GuardrailContentQualifier
	// contains filtered or unexported fields
}

The text block to be evaluated by the guardrail.

type GuardrailTextCharactersCoverage added in v1.18.0

type GuardrailTextCharactersCoverage struct {

	// The text characters that were guarded by the guardrail coverage.
	Guarded *int32

	// The total text characters by the guardrail coverage.
	Total *int32
	// contains filtered or unexported fields
}

The guardrail coverage for the text characters.

type GuardrailTopic added in v1.10.0

type GuardrailTopic struct {

	// The action the guardrail should take when it intervenes on a topic.
	//
	// This member is required.
	Action GuardrailTopicPolicyAction

	// The name for the guardrail.
	//
	// This member is required.
	Name *string

	// The type behavior that the guardrail should perform when the model detects the
	// topic.
	//
	// This member is required.
	Type GuardrailTopicType

	// Indicates whether topic content that breaches the guardrail configuration is
	// detected.
	Detected *bool
	// contains filtered or unexported fields
}

Information about a topic guardrail.

type GuardrailTopicPolicyAction added in v1.10.0

type GuardrailTopicPolicyAction string
const (
	GuardrailTopicPolicyActionBlocked GuardrailTopicPolicyAction = "BLOCKED"
	GuardrailTopicPolicyActionNone    GuardrailTopicPolicyAction = "NONE"
)

Enum values for GuardrailTopicPolicyAction

func (GuardrailTopicPolicyAction) Values added in v1.10.0

Values returns all known values for GuardrailTopicPolicyAction. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailTopicPolicyAssessment added in v1.10.0

type GuardrailTopicPolicyAssessment struct {

	// The topics in the assessment.
	//
	// This member is required.
	Topics []GuardrailTopic
	// contains filtered or unexported fields
}

A behavior assessment of a topic policy.

type GuardrailTopicType added in v1.10.0

type GuardrailTopicType string
const (
	GuardrailTopicTypeDeny GuardrailTopicType = "DENY"
)

Enum values for GuardrailTopicType

func (GuardrailTopicType) Values added in v1.10.0

Values returns all known values for GuardrailTopicType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailTrace added in v1.10.0

type GuardrailTrace string
const (
	GuardrailTraceEnabled     GuardrailTrace = "enabled"
	GuardrailTraceDisabled    GuardrailTrace = "disabled"
	GuardrailTraceEnabledFull GuardrailTrace = "enabled_full"
)

Enum values for GuardrailTrace

func (GuardrailTrace) Values added in v1.10.0

func (GuardrailTrace) Values() []GuardrailTrace

Values returns all known values for GuardrailTrace. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailTraceAssessment added in v1.10.0

type GuardrailTraceAssessment struct {

	// Provides the reason for the action taken when harmful content is detected.
	ActionReason *string

	// The input assessment.
	InputAssessment map[string]GuardrailAssessment

	// The output from the model.
	ModelOutput []string

	// the output assessments.
	OutputAssessments map[string][]GuardrailAssessment
	// contains filtered or unexported fields
}

A Top level guardrail trace object. For more information, see ConverseTrace.

type GuardrailUsage added in v1.13.0

type GuardrailUsage struct {

	// The content policy units processed by the guardrail.
	//
	// This member is required.
	ContentPolicyUnits *int32

	// The contextual grounding policy units processed by the guardrail.
	//
	// This member is required.
	ContextualGroundingPolicyUnits *int32

	// The sensitive information policy free units processed by the guardrail.
	//
	// This member is required.
	SensitiveInformationPolicyFreeUnits *int32

	// The sensitive information policy units processed by the guardrail.
	//
	// This member is required.
	SensitiveInformationPolicyUnits *int32

	// The topic policy units processed by the guardrail.
	//
	// This member is required.
	TopicPolicyUnits *int32

	// The word policy units processed by the guardrail.
	//
	// This member is required.
	WordPolicyUnits *int32

	// The number of automated reasoning policies that were processed during the
	// guardrail evaluation.
	AutomatedReasoningPolicies *int32

	// The number of text units processed by the automated reasoning policy.
	AutomatedReasoningPolicyUnits *int32

	// The content policy image units processed by the guardrail.
	ContentPolicyImageUnits *int32
	// contains filtered or unexported fields
}

The details on the use of the guardrail.

type GuardrailWordPolicyAction added in v1.10.0

type GuardrailWordPolicyAction string
const (
	GuardrailWordPolicyActionBlocked GuardrailWordPolicyAction = "BLOCKED"
	GuardrailWordPolicyActionNone    GuardrailWordPolicyAction = "NONE"
)

Enum values for GuardrailWordPolicyAction

func (GuardrailWordPolicyAction) Values added in v1.10.0

Values returns all known values for GuardrailWordPolicyAction. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GuardrailWordPolicyAssessment added in v1.10.0

type GuardrailWordPolicyAssessment struct {

	// Custom words in the assessment.
	//
	// This member is required.
	CustomWords []GuardrailCustomWord

	// Managed word lists in the assessment.
	//
	// This member is required.
	ManagedWordLists []GuardrailManagedWord
	// contains filtered or unexported fields
}

The word policy assessment.

type ImageBlock added in v1.9.0

type ImageBlock struct {

	// The format of the image.
	//
	// This member is required.
	Format ImageFormat

	// The source for the image.
	//
	// This member is required.
	Source ImageSource
	// contains filtered or unexported fields
}

Image content for a message.

type ImageFormat added in v1.9.0

type ImageFormat string
const (
	ImageFormatPng  ImageFormat = "png"
	ImageFormatJpeg ImageFormat = "jpeg"
	ImageFormatGif  ImageFormat = "gif"
	ImageFormatWebp ImageFormat = "webp"
)

Enum values for ImageFormat

func (ImageFormat) Values added in v1.9.0

func (ImageFormat) Values() []ImageFormat

Values returns all known values for ImageFormat. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ImageSource added in v1.9.0

type ImageSource interface {
	// contains filtered or unexported methods
}

The source for an image.

The following types satisfy this interface:

ImageSourceMemberBytes
ImageSourceMemberS3Location
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ImageSource
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ImageSourceMemberBytes:
		_ = v.Value // Value is []byte

	case *types.ImageSourceMemberS3Location:
		_ = v.Value // Value is types.S3Location

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ImageSourceMemberBytes added in v1.9.0

type ImageSourceMemberBytes struct {
	Value []byte
	// contains filtered or unexported fields
}

The raw image bytes for the image. If you use an AWS SDK, you don't need to encode the image bytes in base64.

type ImageSourceMemberS3Location added in v1.30.0

type ImageSourceMemberS3Location struct {
	Value S3Location
	// contains filtered or unexported fields
}

The location of an image object in an Amazon S3 bucket. To see which models support S3 uploads, see Supported models and features for Converse.

type InferenceConfiguration added in v1.9.0

type InferenceConfiguration struct {

	// The maximum number of tokens to allow in the generated response. The default
	// value is the maximum allowed value for the model that you are using. For more
	// information, see [Inference parameters for foundation models].
	//
	// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
	MaxTokens *int32

	// A list of stop sequences. A stop sequence is a sequence of characters that
	// causes the model to stop generating the response.
	StopSequences []string

	// The likelihood of the model selecting higher-probability options while
	// generating a response. A lower value makes the model more likely to choose
	// higher-probability options, while a higher value makes the model more likely to
	// choose lower-probability options.
	//
	// The default value is the default value for the model that you are using. For
	// more information, see [Inference parameters for foundation models].
	//
	// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
	Temperature *float32

	// The percentage of most-likely candidates that the model considers for the next
	// token. For example, if you choose a value of 0.8 for topP , the model selects
	// from the top 80% of the probability distribution of tokens that could be next in
	// the sequence.
	//
	// The default value is the default value for the model that you are using. For
	// more information, see [Inference parameters for foundation models].
	//
	// [Inference parameters for foundation models]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
	TopP *float32
	// contains filtered or unexported fields
}

Base inference parameters to pass to a model in a call to Converse or ConverseStream. For more information, see Inference parameters for foundation models.

If you need to pass additional parameters that the model supports, use the additionalModelRequestFields request field in the call to Converse or ConverseStream . For more information, see Model parameters.

type InternalServerException

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

An internal server error occurred. For troubleshooting this error, see InternalFailure in the Amazon Bedrock User Guide

func (*InternalServerException) Error

func (e *InternalServerException) Error() string

func (*InternalServerException) ErrorCode

func (e *InternalServerException) ErrorCode() string

func (*InternalServerException) ErrorFault

func (e *InternalServerException) ErrorFault() smithy.ErrorFault

func (*InternalServerException) ErrorMessage

func (e *InternalServerException) ErrorMessage() string

type InvokeModelTokensRequest added in v1.37.0

type InvokeModelTokensRequest struct {

	// The request body to count tokens for, formatted according to the model's
	// expected input format. To learn about the input format for different models, see
	// [Model inference parameters and responses].
	//
	// [Model inference parameters and responses]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
	//
	// This member is required.
	Body []byte
	// contains filtered or unexported fields
}

The body of an InvokeModel API request for token counting. This structure mirrors the input format for the InvokeModel operation, allowing you to count tokens for raw text inference requests.

type Message added in v1.9.0

type Message struct {

	// The message content. Note the following restrictions:
	//
	//   - You can include up to 20 images. Each image's size, height, and width must
	//   be no more than 3.75 MB, 8000 px, and 8000 px, respectively.
	//
	//   - You can include up to five documents. Each document's size must be no more
	//   than 4.5 MB.
	//
	//   - If you include a ContentBlock with a document field in the array, you must
	//   also include a ContentBlock with a text field.
	//
	//   - You can only include images and documents if the role is user .
	//
	// This member is required.
	Content []ContentBlock

	// The role that the message plays in the message.
	//
	// This member is required.
	Role ConversationRole
	// contains filtered or unexported fields
}

A message input, or returned from, a call to Converse or ConverseStream.

type MessageStartEvent added in v1.9.0

type MessageStartEvent struct {

	// The role for the message.
	//
	// This member is required.
	Role ConversationRole
	// contains filtered or unexported fields
}

The start of a message.

type MessageStopEvent added in v1.9.0

type MessageStopEvent struct {

	// The reason why the model stopped generating output.
	//
	// This member is required.
	StopReason StopReason

	// The additional model response fields.
	AdditionalModelResponseFields document.Interface
	// contains filtered or unexported fields
}

The stop event for a message.

type ModelErrorException

type ModelErrorException struct {
	Message *string

	ErrorCodeOverride *string

	OriginalStatusCode *int32
	ResourceName       *string
	// contains filtered or unexported fields
}

The request failed due to an error while processing the model.

func (*ModelErrorException) Error

func (e *ModelErrorException) Error() string

func (*ModelErrorException) ErrorCode

func (e *ModelErrorException) ErrorCode() string

func (*ModelErrorException) ErrorFault

func (e *ModelErrorException) ErrorFault() smithy.ErrorFault

func (*ModelErrorException) ErrorMessage

func (e *ModelErrorException) ErrorMessage() string

type ModelNotReadyException

type ModelNotReadyException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The model specified in the request is not ready to serve inference requests. The AWS SDK will automatically retry the operation up to 5 times. For information about configuring automatic retries, see Retry behaviorin the AWS SDKs and Tools reference guide.

func (*ModelNotReadyException) Error

func (e *ModelNotReadyException) Error() string

func (*ModelNotReadyException) ErrorCode

func (e *ModelNotReadyException) ErrorCode() string

func (*ModelNotReadyException) ErrorFault

func (e *ModelNotReadyException) ErrorFault() smithy.ErrorFault

func (*ModelNotReadyException) ErrorMessage

func (e *ModelNotReadyException) ErrorMessage() string

type ModelStreamErrorException

type ModelStreamErrorException struct {
	Message *string

	ErrorCodeOverride *string

	OriginalStatusCode *int32
	OriginalMessage    *string
	// contains filtered or unexported fields
}

An error occurred while streaming the response. Retry your request.

func (*ModelStreamErrorException) Error

func (e *ModelStreamErrorException) Error() string

func (*ModelStreamErrorException) ErrorCode

func (e *ModelStreamErrorException) ErrorCode() string

func (*ModelStreamErrorException) ErrorFault

func (*ModelStreamErrorException) ErrorMessage

func (e *ModelStreamErrorException) ErrorMessage() string

type ModelTimeoutException

type ModelTimeoutException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request took too long to process. Processing time exceeded the model timeout length.

func (*ModelTimeoutException) Error

func (e *ModelTimeoutException) Error() string

func (*ModelTimeoutException) ErrorCode

func (e *ModelTimeoutException) ErrorCode() string

func (*ModelTimeoutException) ErrorFault

func (e *ModelTimeoutException) ErrorFault() smithy.ErrorFault

func (*ModelTimeoutException) ErrorMessage

func (e *ModelTimeoutException) ErrorMessage() string

type PayloadPart

type PayloadPart struct {

	// Base64-encoded bytes of payload data.
	Bytes []byte
	// contains filtered or unexported fields
}

Payload content included in the response.

type PerformanceConfigLatency added in v1.21.0

type PerformanceConfigLatency string
const (
	PerformanceConfigLatencyStandard  PerformanceConfigLatency = "standard"
	PerformanceConfigLatencyOptimized PerformanceConfigLatency = "optimized"
)

Enum values for PerformanceConfigLatency

func (PerformanceConfigLatency) Values added in v1.21.0

Values returns all known values for PerformanceConfigLatency. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type PerformanceConfiguration added in v1.21.0

type PerformanceConfiguration struct {

	// To use a latency-optimized version of the model, set to optimized .
	Latency PerformanceConfigLatency
	// contains filtered or unexported fields
}

Performance settings for a model.

type PromptRouterTrace added in v1.23.0

type PromptRouterTrace struct {

	// The ID of the invoked model.
	InvokedModelId *string
	// contains filtered or unexported fields
}

A prompt router trace.

type PromptVariableValues added in v1.20.0

type PromptVariableValues interface {
	// contains filtered or unexported methods
}

Contains a map of variables in a prompt from Prompt management to an object containing the values to fill in for them when running model invocation. For more information, see How Prompt management works.

The following types satisfy this interface:

PromptVariableValuesMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.PromptVariableValues
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.PromptVariableValuesMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type PromptVariableValuesMemberText added in v1.20.0

type PromptVariableValuesMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The text value that the variable maps to.

type ReasoningContentBlock added in v1.25.0

type ReasoningContentBlock interface {
	// contains filtered or unexported methods
}

Contains content regarding the reasoning that is carried out by the model with respect to the content in the content block. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.

The following types satisfy this interface:

ReasoningContentBlockMemberReasoningText
ReasoningContentBlockMemberRedactedContent
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ReasoningContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ReasoningContentBlockMemberReasoningText:
		_ = v.Value // Value is types.ReasoningTextBlock

	case *types.ReasoningContentBlockMemberRedactedContent:
		_ = v.Value // Value is []byte

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ReasoningContentBlockDelta added in v1.25.0

type ReasoningContentBlockDelta interface {
	// contains filtered or unexported methods
}

Contains content regarding the reasoning that is carried out by the model with respect to the content in the content block. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.

The following types satisfy this interface:

ReasoningContentBlockDeltaMemberRedactedContent
ReasoningContentBlockDeltaMemberSignature
ReasoningContentBlockDeltaMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ReasoningContentBlockDelta
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ReasoningContentBlockDeltaMemberRedactedContent:
		_ = v.Value // Value is []byte

	case *types.ReasoningContentBlockDeltaMemberSignature:
		_ = v.Value // Value is string

	case *types.ReasoningContentBlockDeltaMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ReasoningContentBlockDeltaMemberRedactedContent added in v1.25.0

type ReasoningContentBlockDeltaMemberRedactedContent struct {
	Value []byte
	// contains filtered or unexported fields
}

The content in the reasoning that was encrypted by the model provider for safety reasons. The encryption doesn't affect the quality of responses.

type ReasoningContentBlockDeltaMemberSignature added in v1.25.0

type ReasoningContentBlockDeltaMemberSignature struct {
	Value string
	// contains filtered or unexported fields
}

A token that verifies that the reasoning text was generated by the model. If you pass a reasoning block back to the API in a multi-turn conversation, include the text and its signature unmodified.

type ReasoningContentBlockDeltaMemberText added in v1.25.0

type ReasoningContentBlockDeltaMemberText struct {
	Value string
	// contains filtered or unexported fields
}

The reasoning that the model used to return the output.

type ReasoningContentBlockMemberReasoningText added in v1.25.0

type ReasoningContentBlockMemberReasoningText struct {
	Value ReasoningTextBlock
	// contains filtered or unexported fields
}

The reasoning that the model used to return the output.

type ReasoningContentBlockMemberRedactedContent added in v1.25.0

type ReasoningContentBlockMemberRedactedContent struct {
	Value []byte
	// contains filtered or unexported fields
}

The content in the reasoning that was encrypted by the model provider for safety reasons. The encryption doesn't affect the quality of responses.

type ReasoningTextBlock added in v1.25.0

type ReasoningTextBlock struct {

	// The reasoning that the model used to return the output.
	//
	// This member is required.
	Text *string

	// A token that verifies that the reasoning text was generated by the model. If
	// you pass a reasoning block back to the API in a multi-turn conversation, include
	// the text and its signature unmodified.
	Signature *string
	// contains filtered or unexported fields
}

Contains the reasoning that the model used to return the output.

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified resource ARN was not found. For troubleshooting this error, see ResourceNotFound in the Amazon Bedrock User Guide

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

type ResponseStream

type ResponseStream interface {
	// contains filtered or unexported methods
}

Definition of content in the response stream.

The following types satisfy this interface:

ResponseStreamMemberChunk
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ResponseStream
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ResponseStreamMemberChunk:
		_ = v.Value // Value is types.PayloadPart

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ResponseStreamMemberChunk

type ResponseStreamMemberChunk struct {
	Value PayloadPart
	// contains filtered or unexported fields
}

Content included in the response.

type S3Location added in v1.22.0

type S3Location struct {

	// An object URI starting with s3:// .
	//
	// This member is required.
	Uri *string

	// If the bucket belongs to another AWS account, specify that account's ID.
	BucketOwner *string
	// contains filtered or unexported fields
}

A storage location in an Amazon S3 bucket.

type ServiceQuotaExceededException

type ServiceQuotaExceededException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Your request exceeds the service quota for your account. You can view your quotas at Viewing service quotas. You can resubmit your request later.

func (*ServiceQuotaExceededException) Error

func (*ServiceQuotaExceededException) ErrorCode

func (e *ServiceQuotaExceededException) ErrorCode() string

func (*ServiceQuotaExceededException) ErrorFault

func (*ServiceQuotaExceededException) ErrorMessage

func (e *ServiceQuotaExceededException) ErrorMessage() string

type ServiceUnavailableException added in v1.15.0

type ServiceUnavailableException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The service isn't currently available. For troubleshooting this error, see ServiceUnavailable in the Amazon Bedrock User Guide

func (*ServiceUnavailableException) Error added in v1.15.0

func (*ServiceUnavailableException) ErrorCode added in v1.15.0

func (e *ServiceUnavailableException) ErrorCode() string

func (*ServiceUnavailableException) ErrorFault added in v1.15.0

func (*ServiceUnavailableException) ErrorMessage added in v1.15.0

func (e *ServiceUnavailableException) ErrorMessage() string

type SortAsyncInvocationBy added in v1.22.0

type SortAsyncInvocationBy string
const (
	SortAsyncInvocationBySubmissionTime SortAsyncInvocationBy = "SubmissionTime"
)

Enum values for SortAsyncInvocationBy

func (SortAsyncInvocationBy) Values added in v1.22.0

Values returns all known values for SortAsyncInvocationBy. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type SortOrder added in v1.22.0

type SortOrder string
const (
	SortOrderAscending  SortOrder = "Ascending"
	SortOrderDescending SortOrder = "Descending"
)

Enum values for SortOrder

func (SortOrder) Values added in v1.22.0

func (SortOrder) Values() []SortOrder

Values returns all known values for SortOrder. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type SpecificToolChoice added in v1.9.0

type SpecificToolChoice struct {

	// The name of the tool that the model must request.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

The model must request a specific tool. For example, {"tool" : {"name" : "Your tool name"}} .

This field is only supported by Anthropic Claude 3 models.

type StopReason added in v1.9.0

type StopReason string
const (
	StopReasonEndTurn             StopReason = "end_turn"
	StopReasonToolUse             StopReason = "tool_use"
	StopReasonMaxTokens           StopReason = "max_tokens"
	StopReasonStopSequence        StopReason = "stop_sequence"
	StopReasonGuardrailIntervened StopReason = "guardrail_intervened"
	StopReasonContentFiltered     StopReason = "content_filtered"
)

Enum values for StopReason

func (StopReason) Values added in v1.9.0

func (StopReason) Values() []StopReason

Values returns all known values for StopReason. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type SystemContentBlock added in v1.9.0

type SystemContentBlock interface {
	// contains filtered or unexported methods
}

A system content block.

The following types satisfy this interface:

SystemContentBlockMemberCachePoint
SystemContentBlockMemberGuardContent
SystemContentBlockMemberText
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.SystemContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.SystemContentBlockMemberCachePoint:
		_ = v.Value // Value is types.CachePointBlock

	case *types.SystemContentBlockMemberGuardContent:
		_ = v.Value // Value is types.GuardrailConverseContentBlock

	case *types.SystemContentBlockMemberText:
		_ = v.Value // Value is string

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type SystemContentBlockMemberCachePoint added in v1.28.0

type SystemContentBlockMemberCachePoint struct {
	Value CachePointBlock
	// contains filtered or unexported fields
}

CachePoint to include in the system prompt.

type SystemContentBlockMemberGuardContent added in v1.10.0

type SystemContentBlockMemberGuardContent struct {
	Value GuardrailConverseContentBlock
	// contains filtered or unexported fields
}

A content block to assess with the guardrail. Use with the Converse or ConverseStream API operations.

For more information, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide.

type SystemContentBlockMemberText added in v1.9.0

type SystemContentBlockMemberText struct {
	Value string
	// contains filtered or unexported fields
}

A system prompt for the model.

type Tag added in v1.22.0

type Tag struct {

	// The tag's key.
	//
	// This member is required.
	Key *string

	// The tag's value.
	//
	// This member is required.
	Value *string
	// contains filtered or unexported fields
}

A tag.

type ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Your request was denied due to exceeding the account quotas for Amazon Bedrock. For troubleshooting this error, see ThrottlingExceptionin the Amazon Bedrock User Guide

func (*ThrottlingException) Error

func (e *ThrottlingException) Error() string

func (*ThrottlingException) ErrorCode

func (e *ThrottlingException) ErrorCode() string

func (*ThrottlingException) ErrorFault

func (e *ThrottlingException) ErrorFault() smithy.ErrorFault

func (*ThrottlingException) ErrorMessage

func (e *ThrottlingException) ErrorMessage() string

type TokenUsage added in v1.9.0

type TokenUsage struct {

	// The number of tokens sent in the request to the model.
	//
	// This member is required.
	InputTokens *int32

	// The number of tokens that the model generated for the request.
	//
	// This member is required.
	OutputTokens *int32

	// The total of input tokens and tokens generated by the model.
	//
	// This member is required.
	TotalTokens *int32

	// The number of input tokens read from the cache for the request.
	CacheReadInputTokens *int32

	// The number of input tokens written to the cache for the request.
	CacheWriteInputTokens *int32
	// contains filtered or unexported fields
}

The tokens used in a message API inference call.

type Tool added in v1.9.0

type Tool interface {
	// contains filtered or unexported methods
}

Information about a tool that you can use with the Converse API. For more information, see Tool use (function calling)in the Amazon Bedrock User Guide.

The following types satisfy this interface:

ToolMemberCachePoint
ToolMemberToolSpec
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.Tool
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ToolMemberCachePoint:
		_ = v.Value // Value is types.CachePointBlock

	case *types.ToolMemberToolSpec:
		_ = v.Value // Value is types.ToolSpecification

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ToolChoice added in v1.9.0

type ToolChoice interface {
	// contains filtered or unexported methods
}

Determines which tools the model should request in a call to Converse or ConverseStream . ToolChoice is only supported by Anthropic Claude 3 models and by Mistral AI Mistral Large.

The following types satisfy this interface:

ToolChoiceMemberAny
ToolChoiceMemberAuto
ToolChoiceMemberTool
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ToolChoice
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ToolChoiceMemberAny:
		_ = v.Value // Value is types.AnyToolChoice

	case *types.ToolChoiceMemberAuto:
		_ = v.Value // Value is types.AutoToolChoice

	case *types.ToolChoiceMemberTool:
		_ = v.Value // Value is types.SpecificToolChoice

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ToolChoiceMemberAny added in v1.9.0

type ToolChoiceMemberAny struct {
	Value AnyToolChoice
	// contains filtered or unexported fields
}

The model must request at least one tool (no text is generated).

type ToolChoiceMemberAuto added in v1.9.0

type ToolChoiceMemberAuto struct {
	Value AutoToolChoice
	// contains filtered or unexported fields
}

(Default). The Model automatically decides if a tool should be called or whether to generate text instead.

type ToolChoiceMemberTool added in v1.9.0

type ToolChoiceMemberTool struct {
	Value SpecificToolChoice
	// contains filtered or unexported fields
}

The Model must request the specified tool. Only supported by Anthropic Claude 3 models.

type ToolConfiguration added in v1.9.0

type ToolConfiguration struct {

	// An array of tools that you want to pass to a model.
	//
	// This member is required.
	Tools []Tool

	// If supported by model, forces the model to request a tool.
	ToolChoice ToolChoice
	// contains filtered or unexported fields
}

Configuration information for the tools that you pass to a model. For more information, see Tool use (function calling)in the Amazon Bedrock User Guide.

type ToolInputSchema added in v1.9.0

type ToolInputSchema interface {
	// contains filtered or unexported methods
}

The schema for the tool. The top level schema type must be object .

The following types satisfy this interface:

ToolInputSchemaMemberJson
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ToolInputSchema
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ToolInputSchemaMemberJson:
		_ = v.Value // Value is document.Interface

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ToolInputSchemaMemberJson added in v1.9.0

type ToolInputSchemaMemberJson struct {
	Value document.Interface
	// contains filtered or unexported fields
}

The JSON schema for the tool. For more information, see JSON Schema Reference.

type ToolMemberCachePoint added in v1.28.0

type ToolMemberCachePoint struct {
	Value CachePointBlock
	// contains filtered or unexported fields
}

CachePoint to include in the tool configuration.

type ToolMemberToolSpec added in v1.9.0

type ToolMemberToolSpec struct {
	Value ToolSpecification
	// contains filtered or unexported fields
}

The specfication for the tool.

type ToolResultBlock added in v1.9.0

type ToolResultBlock struct {

	// The content for tool result content block.
	//
	// This member is required.
	Content []ToolResultContentBlock

	// The ID of the tool request that this is the result for.
	//
	// This member is required.
	ToolUseId *string

	// The status for the tool result content block.
	//
	// This field is only supported Anthropic Claude 3 models.
	Status ToolResultStatus
	// contains filtered or unexported fields
}

A tool result block that contains the results for a tool request that the model previously made.

type ToolResultContentBlock added in v1.9.0

type ToolResultContentBlock interface {
	// contains filtered or unexported methods
}

The tool result content block.

The following types satisfy this interface:

ToolResultContentBlockMemberDocument
ToolResultContentBlockMemberImage
ToolResultContentBlockMemberJson
ToolResultContentBlockMemberText
ToolResultContentBlockMemberVideo
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.ToolResultContentBlock
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.ToolResultContentBlockMemberDocument:
		_ = v.Value // Value is types.DocumentBlock

	case *types.ToolResultContentBlockMemberImage:
		_ = v.Value // Value is types.ImageBlock

	case *types.ToolResultContentBlockMemberJson:
		_ = v.Value // Value is document.Interface

	case *types.ToolResultContentBlockMemberText:
		_ = v.Value // Value is string

	case *types.ToolResultContentBlockMemberVideo:
		_ = v.Value // Value is types.VideoBlock

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type ToolResultContentBlockMemberDocument added in v1.11.0

type ToolResultContentBlockMemberDocument struct {
	Value DocumentBlock
	// contains filtered or unexported fields
}

A tool result that is a document.

type ToolResultContentBlockMemberImage added in v1.9.0

type ToolResultContentBlockMemberImage struct {
	Value ImageBlock
	// contains filtered or unexported fields
}

A tool result that is an image.

This field is only supported by Anthropic Claude 3 models.

type ToolResultContentBlockMemberJson added in v1.9.0

type ToolResultContentBlockMemberJson struct {
	Value document.Interface
	// contains filtered or unexported fields
}

A tool result that is JSON format data.

type ToolResultContentBlockMemberText added in v1.9.0

type ToolResultContentBlockMemberText struct {
	Value string
	// contains filtered or unexported fields
}

A tool result that is text.

type ToolResultContentBlockMemberVideo added in v1.22.0

type ToolResultContentBlockMemberVideo struct {
	Value VideoBlock
	// contains filtered or unexported fields
}

A tool result that is video.

type ToolResultStatus added in v1.9.0

type ToolResultStatus string
const (
	ToolResultStatusSuccess ToolResultStatus = "success"
	ToolResultStatusError   ToolResultStatus = "error"
)

Enum values for ToolResultStatus

func (ToolResultStatus) Values added in v1.9.0

Values returns all known values for ToolResultStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ToolSpecification added in v1.9.0

type ToolSpecification struct {

	// The input schema for the tool in JSON format.
	//
	// This member is required.
	InputSchema ToolInputSchema

	// The name for the tool.
	//
	// This member is required.
	Name *string

	// The description for the tool.
	Description *string
	// contains filtered or unexported fields
}

The specification for the tool.

type ToolUseBlock added in v1.9.0

type ToolUseBlock struct {

	// The input to pass to the tool.
	//
	// This member is required.
	Input document.Interface

	// The name of the tool that the model wants to use.
	//
	// This member is required.
	Name *string

	// The ID for the tool request.
	//
	// This member is required.
	ToolUseId *string
	// contains filtered or unexported fields
}

A tool use content block. Contains information about a tool that the model is requesting be run., The model uses the result from the tool to generate a response.

type ToolUseBlockDelta added in v1.9.0

type ToolUseBlockDelta struct {

	// The input for a requested tool.
	//
	// This member is required.
	Input *string
	// contains filtered or unexported fields
}

The delta for a tool use block.

type ToolUseBlockStart added in v1.9.0

type ToolUseBlockStart struct {

	// The name of the tool that the model is requesting to use.
	//
	// This member is required.
	Name *string

	// The ID for the tool request.
	//
	// This member is required.
	ToolUseId *string
	// contains filtered or unexported fields
}

The start of a tool use block.

type Trace added in v1.8.0

type Trace string
const (
	TraceEnabled     Trace = "ENABLED"
	TraceDisabled    Trace = "DISABLED"
	TraceEnabledFull Trace = "ENABLED_FULL"
)

Enum values for Trace

func (Trace) Values added in v1.8.0

func (Trace) Values() []Trace

Values returns all known values for Trace. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type UnknownUnionMember

type UnknownUnionMember struct {
	Tag   string
	Value []byte
	// contains filtered or unexported fields
}

UnknownUnionMember is returned when a union member is returned over the wire, but has an unknown tag.

type ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The input fails to satisfy the constraints specified by Amazon Bedrock. For troubleshooting this error, see ValidationErrorin the Amazon Bedrock User Guide

func (*ValidationException) Error

func (e *ValidationException) Error() string

func (*ValidationException) ErrorCode

func (e *ValidationException) ErrorCode() string

func (*ValidationException) ErrorFault

func (e *ValidationException) ErrorFault() smithy.ErrorFault

func (*ValidationException) ErrorMessage

func (e *ValidationException) ErrorMessage() string

type VideoBlock added in v1.22.0

type VideoBlock struct {

	// The block's format.
	//
	// This member is required.
	Format VideoFormat

	// The block's source.
	//
	// This member is required.
	Source VideoSource
	// contains filtered or unexported fields
}

A video block.

type VideoFormat added in v1.22.0

type VideoFormat string
const (
	VideoFormatMkv     VideoFormat = "mkv"
	VideoFormatMov     VideoFormat = "mov"
	VideoFormatMp4     VideoFormat = "mp4"
	VideoFormatWebm    VideoFormat = "webm"
	VideoFormatFlv     VideoFormat = "flv"
	VideoFormatMpeg    VideoFormat = "mpeg"
	VideoFormatMpg     VideoFormat = "mpg"
	VideoFormatWmv     VideoFormat = "wmv"
	VideoFormatThreeGp VideoFormat = "three_gp"
)

Enum values for VideoFormat

func (VideoFormat) Values added in v1.22.0

func (VideoFormat) Values() []VideoFormat

Values returns all known values for VideoFormat. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type VideoSource added in v1.22.0

type VideoSource interface {
	// contains filtered or unexported methods
}

A video source. You can upload a smaller video as a base64-encoded string as long as the encoded file is less than 25MB. You can also transfer videos up to 1GB in size from an S3 bucket.

The following types satisfy this interface:

VideoSourceMemberBytes
VideoSourceMemberS3Location
Example (OutputUsage)
package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/bedrockruntime/types"
)

func main() {
	var union types.VideoSource
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.VideoSourceMemberBytes:
		_ = v.Value // Value is []byte

	case *types.VideoSourceMemberS3Location:
		_ = v.Value // Value is types.S3Location

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

type VideoSourceMemberBytes added in v1.22.0

type VideoSourceMemberBytes struct {
	Value []byte
	// contains filtered or unexported fields
}

Video content encoded in base64.

type VideoSourceMemberS3Location added in v1.22.0

type VideoSourceMemberS3Location struct {
	Value S3Location
	// contains filtered or unexported fields
}

The location of a video object in an Amazon S3 bucket. To see which models support S3 uploads, see Supported models and features for Converse.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL