Class: Aws::BedrockRuntime::Types::ImageBlockDelta

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockruntime/types.rb

Overview

A streaming delta event that contains incremental image data during streaming responses.

Constant Summary collapse

SENSITIVE =
[:source, :error]

Instance Attribute Summary collapse

Instance Attribute Details

#errorTypes::ErrorBlock

Error information if this image delta could not be processed.

Returns:



3085
3086
3087
3088
3089
3090
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 3085

class ImageBlockDelta < Struct.new(
  :source,
  :error)
  SENSITIVE = [:source, :error]
  include Aws::Structure
end

#sourceTypes::ImageSource

The incremental image source data for this delta event.

Returns:



3085
3086
3087
3088
3089
3090
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 3085

class ImageBlockDelta < Struct.new(
  :source,
  :error)
  SENSITIVE = [:source, :error]
  include Aws::Structure
end