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
Note:
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.
Direct Known Subclasses
SemanticExtractionOverride, Unknown, UserPreferenceExtractionOverride
Defined Under Namespace
Classes: SemanticExtractionOverride, Unknown, UserPreferenceExtractionOverride
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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
#semantic_extraction_override ⇒ Types::SemanticExtractionOverride
The semantic extraction override configuration.
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1409 class CustomExtractionConfiguration < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfiguration; end class UserPreferenceExtractionOverride < CustomExtractionConfiguration; end class Unknown < CustomExtractionConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1409 1410 1411 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1409 def unknown @unknown end |
#user_preference_extraction_override ⇒ Types::UserPreferenceExtractionOverride
The user preference extraction override configuration.
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1409 class CustomExtractionConfiguration < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfiguration; end class UserPreferenceExtractionOverride < CustomExtractionConfiguration; end class Unknown < CustomExtractionConfiguration; end end |