Class: Aws::BedrockAgent::Types::InlineContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::InlineContent
- Defined in:
- gems/aws-sdk-bedrockagent/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.
5541 5542 5543 5544 5545 5546 5547 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5541 class InlineContent < Struct.new( :byte_content, :text_content, :type) SENSITIVE = [] include Aws::Structure end |
#text_content ⇒ Types::TextContentDoc
Contains information about content defined inline in text.
5541 5542 5543 5544 5545 5546 5547 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5541 class InlineContent < Struct.new( :byte_content, :text_content, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of inline content to define.
5541 5542 5543 5544 5545 5546 5547 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5541 class InlineContent < Struct.new( :byte_content, :text_content, :type) SENSITIVE = [] include Aws::Structure end |