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.
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1909 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
1909 1910 1911 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1909 def unknown @unknown end |