Class: Aws::BedrockAgentCore::Types::InputContentBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::InputContentBlock
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
A block of input content.
Constant Summary collapse
- SENSITIVE =
[:blob]
Instance Attribute Summary collapse
-
#blob ⇒ String
The binary input content.
-
#path ⇒ String
The path to the input content.
-
#text ⇒ String
The text input content.
Instance Attribute Details
#blob ⇒ String
The binary input content.
995 996 997 998 999 1000 1001 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 995 class InputContentBlock < Struct.new( :path, :text, :blob) SENSITIVE = [:blob] include Aws::Structure end |
#path ⇒ String
The path to the input content.
995 996 997 998 999 1000 1001 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 995 class InputContentBlock < Struct.new( :path, :text, :blob) SENSITIVE = [:blob] include Aws::Structure end |
#text ⇒ String
The text input content.
995 996 997 998 999 1000 1001 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 995 class InputContentBlock < Struct.new( :path, :text, :blob) SENSITIVE = [:blob] include Aws::Structure end |