Class: Aws::BedrockRuntime::Types::ImageBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::ImageBlock
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Image content for a message.
Constant Summary collapse
- SENSITIVE =
[:source, :error]
Instance Attribute Summary collapse
-
#error ⇒ Types::ErrorBlock
Error information if the image block could not be processed or contains invalid data.
-
#format ⇒ String
The format of the image.
-
#source ⇒ Types::ImageSource
The source for the image.
Instance Attribute Details
#error ⇒ Types::ErrorBlock
Error information if the image block could not be processed or contains invalid data.
3037 3038 3039 3040 3041 3042 3043 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3037 class ImageBlock < Struct.new( :format, :source, :error) SENSITIVE = [:source, :error] include Aws::Structure end |
#format ⇒ String
The format of the image.
3037 3038 3039 3040 3041 3042 3043 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3037 class ImageBlock < Struct.new( :format, :source, :error) SENSITIVE = [:source, :error] include Aws::Structure end |
#source ⇒ Types::ImageSource
The source for the image.
3037 3038 3039 3040 3041 3042 3043 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3037 class ImageBlock < Struct.new( :format, :source, :error) SENSITIVE = [:source, :error] include Aws::Structure end |