Class: Aws::BedrockAgentCoreControl::Types::CustomConfigurationInput

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

Overview

Note:

CustomConfigurationInput is a union - when making an API calls you must set exactly one of the members.

Input for custom configuration of a memory strategy.

Defined Under Namespace

Classes: SemanticOverride, SummaryOverride, Unknown, UserPreferenceOverride

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#semantic_overrideTypes::SemanticOverrideConfigurationInput

The semantic override configuration for a custom memory strategy.



1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314

class CustomConfigurationInput < Struct.new(
  :semantic_override,
  :summary_override,
  :user_preference_override,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticOverride < CustomConfigurationInput; end
  class SummaryOverride < CustomConfigurationInput; end
  class UserPreferenceOverride < CustomConfigurationInput; end
  class Unknown < CustomConfigurationInput; end
end

#summary_overrideTypes::SummaryOverrideConfigurationInput

The summary override configuration for a custom memory strategy.



1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314

class CustomConfigurationInput < Struct.new(
  :semantic_override,
  :summary_override,
  :user_preference_override,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticOverride < CustomConfigurationInput; end
  class SummaryOverride < CustomConfigurationInput; end
  class UserPreferenceOverride < CustomConfigurationInput; end
  class Unknown < CustomConfigurationInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1314
1315
1316
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314

def unknown
  @unknown
end

#user_preference_overrideTypes::UserPreferenceOverrideConfigurationInput

The user preference override configuration for a custom memory strategy.



1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314

class CustomConfigurationInput < Struct.new(
  :semantic_override,
  :summary_override,
  :user_preference_override,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticOverride < CustomConfigurationInput; end
  class SummaryOverride < CustomConfigurationInput; end
  class UserPreferenceOverride < CustomConfigurationInput; end
  class Unknown < CustomConfigurationInput; end
end