Class: Aws::BedrockAgentCoreControl::Types::CustomExtractionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CustomExtractionConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
CustomExtractionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomExtractionConfiguration corresponding to the set member.
Contains custom extraction configuration information.
Defined Under Namespace
Classes: EpisodicExtractionOverride, SemanticExtractionOverride, Unknown, UserPreferenceExtractionOverride
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#episodic_extraction_override ⇒ Types::EpisodicExtractionOverride
The configurations to override the default extraction step for the episodic memory strategy.
-
#semantic_extraction_override ⇒ Types::SemanticExtractionOverride
The semantic extraction override configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user_preference_extraction_override ⇒ Types::UserPreferenceExtractionOverride
The user preference extraction override configuration.
Instance Attribute Details
#episodic_extraction_override ⇒ Types::EpisodicExtractionOverride
The configurations to override the default extraction step for the episodic memory strategy.
4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4061 class CustomExtractionConfiguration < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :episodic_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfiguration; end class UserPreferenceExtractionOverride < CustomExtractionConfiguration; end class EpisodicExtractionOverride < CustomExtractionConfiguration; end class Unknown < CustomExtractionConfiguration; end end |
#semantic_extraction_override ⇒ Types::SemanticExtractionOverride
The semantic extraction override configuration.
4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4061 class CustomExtractionConfiguration < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :episodic_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfiguration; end class UserPreferenceExtractionOverride < CustomExtractionConfiguration; end class EpisodicExtractionOverride < CustomExtractionConfiguration; end class Unknown < CustomExtractionConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4061 4062 4063 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4061 def unknown @unknown end |
#user_preference_extraction_override ⇒ Types::UserPreferenceExtractionOverride
The user preference extraction override configuration.
4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4061 class CustomExtractionConfiguration < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :episodic_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfiguration; end class UserPreferenceExtractionOverride < CustomExtractionConfiguration; end class EpisodicExtractionOverride < CustomExtractionConfiguration; end class Unknown < CustomExtractionConfiguration; end end |