Class: Aws::BedrockAgentCoreControl::Types::ExtractionConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb

Overview

Note:

ExtractionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionConfiguration corresponding to the set member.

Contains extraction configuration information for a memory strategy.

Direct Known Subclasses

CustomExtractionConfiguration, Unknown

Defined Under Namespace

Classes: CustomExtractionConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_extraction_configurationTypes::CustomExtractionConfiguration

The custom extraction configuration.



1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1909

class ExtractionConfiguration < Struct.new(
  :custom_extraction_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomExtractionConfiguration < ExtractionConfiguration; end
  class Unknown < ExtractionConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1909
1910
1911
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1909

def unknown
  @unknown
end