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.



5915
5916
5917
5918
5919
5920
5921
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5915

class InlineContent < Struct.new(
  :type,
  :byte_content,
  :text_content)
  SENSITIVE = []
  include Aws::Structure
end

#text_contentTypes::TextContentDoc

Contains information about content defined inline in text.



5915
5916
5917
5918
5919
5920
5921
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5915

class InlineContent < Struct.new(
  :type,
  :byte_content,
  :text_content)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of inline content to define.

Returns:

  • (String)


5915
5916
5917
5918
5919
5920
5921
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 5915

class InlineContent < Struct.new(
  :type,
  :byte_content,
  :text_content)
  SENSITIVE = []
  include Aws::Structure
end