Class: Aws::BedrockAgent::Types::InlineContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::InlineContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Contains information about content defined inline to ingest into a data source. Choose a ‘type` and include the field that corresponds to it.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#byte_content ⇒ Types::ByteContentDoc
Contains information about content defined inline in bytes.
-
#text_content ⇒ Types::TextContentDoc
Contains information about content defined inline in text.
-
#type ⇒ String
The type of inline content to define.
Instance Attribute Details
#byte_content ⇒ Types::ByteContentDoc
Contains information about content defined inline in bytes.
5915 5916 5917 5918 5919 5920 5921 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5915 class InlineContent < Struct.new( :type, :byte_content, :text_content) SENSITIVE = [] include Aws::Structure end |
#text_content ⇒ Types::TextContentDoc
Contains information about content defined inline in text.
5915 5916 5917 5918 5919 5920 5921 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5915 class InlineContent < Struct.new( :type, :byte_content, :text_content) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of inline content to define.
5915 5916 5917 5918 5919 5920 5921 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5915 class InlineContent < Struct.new( :type, :byte_content, :text_content) SENSITIVE = [] include Aws::Structure end |