Class: Aws::BedrockAgentCore::Types::Content
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::Content
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Note:
Content is a union - when making an API calls you must set exactly one of the members.
Note:
Content is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Content corresponding to the set member.
Contains the content of a memory item.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[:text]
Instance Attribute Summary collapse
-
#text ⇒ String
The text content of the memory item.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text ⇒ String
The text content of the memory item.
316 317 318 319 320 321 322 323 324 325 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 316 class Content < Struct.new( :text, :unknown) SENSITIVE = [:text] include Aws::Structure include Aws::Structure::Union class Text < Content; end class Unknown < Content; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
316 317 318 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 316 def unknown @unknown end |