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.
6112 6113 6114 6115 6116 6117 6118 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6112 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.
6112 6113 6114 6115 6116 6117 6118 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6112 class InlineContent < Struct.new( :type, :byte_content, :text_content) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of inline content to define.
6112 6113 6114 6115 6116 6117 6118 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6112 class InlineContent < Struct.new( :type, :byte_content, :text_content) SENSITIVE = [] include Aws::Structure end |