Class: Aws::BedrockAgentCore::Types::ExtractionJobMessages

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb

Overview

Note:

ExtractionJobMessages is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionJobMessages corresponding to the set member.

The list of messages that compose this extraction job.

Direct Known Subclasses

MessagesList, Unknown

Defined Under Namespace

Classes: MessagesList, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messages_listArray<Types::MessageMetadata>

The list of messages that compose this extraction job.

Returns:



822
823
824
825
826
827
828
829
830
831
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 822

class ExtractionJobMessages < Struct.new(
  :messages_list,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class MessagesList < ExtractionJobMessages; end
  class Unknown < ExtractionJobMessages; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



822
823
824
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 822

def unknown
  @unknown
end