Class: Aws::BedrockAgentCoreControl::Types::CustomExtractionConfigurationInput

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

Defined Under Namespace

Classes: SemanticExtractionOverride, Unknown, UserPreferenceExtractionOverride

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#semantic_extraction_overrideTypes::SemanticOverrideExtractionConfigurationInput

The semantic extraction override configuration input.



1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1621

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1621
1622
1623
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1621

def unknown
  @unknown
end

#user_preference_extraction_overrideTypes::UserPreferenceOverrideExtractionConfigurationInput

The user preference extraction override configuration input.



1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1621

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