Class: Aws::BedrockAgentCoreControl::Types::CustomExtractionConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CustomExtractionConfigurationInput
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
CustomExtractionConfigurationInput is a union - when making an API calls you must set exactly one of the members.
Input for a custom extraction configuration.
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::SemanticOverrideExtractionConfigurationInput
The semantic extraction override configuration input.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user_preference_extraction_override ⇒ Types::UserPreferenceOverrideExtractionConfigurationInput
The user preference extraction override configuration input.
Instance Attribute Details
#semantic_extraction_override ⇒ Types::SemanticOverrideExtractionConfigurationInput
The semantic extraction override configuration input.
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1436 class CustomExtractionConfigurationInput < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfigurationInput; end class UserPreferenceExtractionOverride < CustomExtractionConfigurationInput; end class Unknown < CustomExtractionConfigurationInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1436 1437 1438 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1436 def unknown @unknown end |
#user_preference_extraction_override ⇒ Types::UserPreferenceOverrideExtractionConfigurationInput
The user preference extraction override configuration input.
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1436 class CustomExtractionConfigurationInput < Struct.new( :semantic_extraction_override, :user_preference_extraction_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticExtractionOverride < CustomExtractionConfigurationInput; end class UserPreferenceExtractionOverride < CustomExtractionConfigurationInput; end class Unknown < CustomExtractionConfigurationInput; end end |