Class: Aws::BedrockAgentRuntime::Types::ByteContentDoc
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::ByteContentDoc
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
This property contains the document to chat with, along with its attributes.
Constant Summary collapse
- SENSITIVE =
[:data, :identifier]
Instance Attribute Summary collapse
-
#content_type ⇒ String
The MIME type of the document contained in the wrapper object.
-
#data ⇒ String
The byte value of the file to upload, encoded as a Base-64 string.
-
#identifier ⇒ String
The file name of the document contained in the wrapper object.
Instance Attribute Details
#content_type ⇒ String
The MIME type of the document contained in the wrapper object.
654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 654 class ByteContentDoc < Struct.new( :content_type, :data, :identifier) SENSITIVE = [:data, :identifier] include Aws::Structure end |
#data ⇒ String
The byte value of the file to upload, encoded as a Base-64 string.
654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 654 class ByteContentDoc < Struct.new( :content_type, :data, :identifier) SENSITIVE = [:data, :identifier] include Aws::Structure end |
#identifier ⇒ String
The file name of the document contained in the wrapper object.
654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 654 class ByteContentDoc < Struct.new( :content_type, :data, :identifier) SENSITIVE = [:data, :identifier] include Aws::Structure end |