Class: Aws::BedrockAgentRuntime::Types::InputImage
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::InputImage
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains the image data for multimodal knowledge base queries, including format and content.
This data type is used in the following API operations:
- Retrieve request – in the
imagefield
^
Constant Summary collapse
- SENSITIVE =
[:inline_content]
Instance Attribute Summary collapse
-
#format ⇒ String
The format of the input image.
-
#inline_content ⇒ String
The base64-encoded image data for inline image content.
Instance Attribute Details
#format ⇒ String
The format of the input image. Supported formats include png, gif, jpeg, and webp.
4038 4039 4040 4041 4042 4043 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4038 class InputImage < Struct.new( :format, :inline_content) SENSITIVE = [:inline_content] include Aws::Structure end |
#inline_content ⇒ String
The base64-encoded image data for inline image content. Maximum size is 5MB.
4038 4039 4040 4041 4042 4043 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4038 class InputImage < Struct.new( :format, :inline_content) SENSITIVE = [:inline_content] include Aws::Structure end |