Class: Aws::BedrockRuntime::Types::ConverseOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::ConverseOutput
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Note:
ConverseOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConverseOutput corresponding to the set member.
The output from a call to Converse.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ Types::Message
The message that the model generates.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#message ⇒ Types::Message
The message that the model generates.
306 307 308 309 310 311 312 313 314 315 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 306 class ConverseOutput < Struct.new( :message, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Message < ConverseOutput; end class Unknown < ConverseOutput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
306 307 308 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 306 def unknown @unknown end |