Class: Aws::BedrockAgentRuntime::Types::FilePart

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#event_typeObject

Returns the value of attribute event_type

Returns:

  • (Object)

    the current value of event_type



2223
2224
2225
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2223

def event_type
  @event_type
end

#filesArray<Types::OutputFile>

Files containing intermediate response for the user.

Returns:



2223
2224
2225
2226
2227
2228
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2223

class FilePart < Struct.new(
  :files,
  :event_type)
  SENSITIVE = [:files]
  include Aws::Structure
end