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.



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1436
1437
1438
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1436

def unknown
  @unknown
end

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