Class: Aws::BedrockAgent::Types::InlineContent

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#byte_contentTypes::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_contentTypes::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

#typeString

The type of inline content to define.

Returns:

  • (String)


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