Class: Aws::BedrockAgentRuntime::Types::FilePart
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::FilePart
- Defined in:
- gems/aws-sdk-bedrockagentruntime/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
649 650 651 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 649 def event_type @event_type end |
#files ⇒ Array<Types::OutputFile>
Files containing intermediate response for the user.
649 650 651 652 653 654 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 649 class FilePart < Struct.new( :files, :event_type) SENSITIVE = [:files] include Aws::Structure end |