Class: Aws::BedrockAgentCore::Types::ExtractionJobMessages
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ExtractionJobMessages
- 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
Defined Under Namespace
Classes: MessagesList, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#messages_list ⇒ Array<Types::MessageMetadata>
The list of messages that compose this extraction job.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#messages_list ⇒ Array<Types::MessageMetadata>
The list of messages that compose this extraction job.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
822 823 824 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 822 def unknown @unknown end |