Class: Aws::BedrockAgentRuntime::Types::ByteContentFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::ByteContentFile
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
The property contains the file to chat with, along with its attributes.
Constant Summary collapse
- SENSITIVE =
[:data]
Instance Attribute Summary collapse
-
#data ⇒ String
The raw bytes of the file to attach.
-
#media_type ⇒ String
The MIME type of data contained in the file used for chat.
Instance Attribute Details
#data ⇒ String
The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.
510 511 512 513 514 515 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 510 class ByteContentFile < Struct.new( :data, :media_type) SENSITIVE = [:data] include Aws::Structure end |
#media_type ⇒ String
The MIME type of data contained in the file used for chat.
510 511 512 513 514 515 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 510 class ByteContentFile < Struct.new( :data, :media_type) SENSITIVE = [:data] include Aws::Structure end |