Class: Aws::BedrockAgentRuntime::Types::FilePart
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::FilePart
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains intermediate response for code interpreter if any files have been generated.
Constant Summary collapse
- SENSITIVE =
[:files]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#files ⇒ Array<Types::OutputFile>
Files containing intermediate response for the user.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
1101 1102 1103 |
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 1101 def event_type @event_type end |
#files ⇒ Array<Types::OutputFile>
Files containing intermediate response for the user.
1101 1102 1103 1104 1105 1106 |
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 1101 class FilePart < Struct.new( :files, :event_type) SENSITIVE = [:files] include Aws::Structure end |