Class: Aws::BedrockAgentRuntime::Types::InlineAgentFilePart

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



2389
2390
2391
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2389

def event_type
  @event_type
end

#filesArray<Types::OutputFile>

Files containing intermediate response for the user.

Returns:



2389
2390
2391
2392
2393
2394
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2389

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