Class: Aws::BedrockRuntime::Types::ConverseOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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].

[1]: docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html

Direct Known Subclasses

Message, Unknown

Defined Under Namespace

Classes: Message, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageTypes::Message

The message that the model generates.

Returns:



306
307
308
309
310
311
312
313
314
315
# File '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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



306
307
308
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 306

def unknown
  @unknown
end