Class: Aws::BedrockAgentCoreControl::Types::ExtractionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::ExtractionConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
ExtractionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionConfiguration corresponding to the set member.
Contains extraction configuration information for a memory strategy.
Direct Known Subclasses
Defined Under Namespace
Classes: CustomExtractionConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_extraction_configuration ⇒ Types::CustomExtractionConfiguration
The custom extraction configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#custom_extraction_configuration ⇒ Types::CustomExtractionConfiguration
The custom extraction configuration.
3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3759 class ExtractionConfiguration < Struct.new( :custom_extraction_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomExtractionConfiguration < ExtractionConfiguration; end class Unknown < ExtractionConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3759 3760 3761 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3759 def unknown @unknown end |