Class: Aws::BedrockAgentRuntime::Types::OutputFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::OutputFile
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains details of the response from code interpreter.
Constant Summary collapse
- SENSITIVE =
[:bytes]
Instance Attribute Summary collapse
-
#bytes ⇒ String
The byte count of files that contains response from code interpreter.
-
#name ⇒ String
The name of the file containing response from code interpreter.
-
#type ⇒ String
The type of file that contains response from the code interpreter.
Instance Attribute Details
#bytes ⇒ String
The byte count of files that contains response from code interpreter.
6252 6253 6254 6255 6256 6257 6258 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6252 class OutputFile < Struct.new( :name, :type, :bytes) SENSITIVE = [:bytes] include Aws::Structure end |
#name ⇒ String
The name of the file containing response from code interpreter.
6252 6253 6254 6255 6256 6257 6258 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6252 class OutputFile < Struct.new( :name, :type, :bytes) SENSITIVE = [:bytes] include Aws::Structure end |
#type ⇒ String
The type of file that contains response from the code interpreter.
6252 6253 6254 6255 6256 6257 6258 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6252 class OutputFile < Struct.new( :name, :type, :bytes) SENSITIVE = [:bytes] include Aws::Structure end |