Class: Aws::BedrockAgentCoreControl::Types::CustomExtractionConfiguration

Inherits:
Struct
  • Object
show all
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.

Defined Under Namespace

Classes: SemanticExtractionOverride, Unknown, UserPreferenceExtractionOverride

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#semantic_extraction_overrideTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1409
1410
1411
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1409

def unknown
  @unknown
end

#user_preference_extraction_overrideTypes::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