Class: Aws::BedrockAgentCoreControl::Types::MemoryStrategyInput

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

Overview

Note:

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

Contains input information for creating a memory strategy.

Defined Under Namespace

Classes: CustomMemoryStrategy, SemanticMemoryStrategy, SummaryMemoryStrategy, Unknown, UserPreferenceMemoryStrategy

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_memory_strategyTypes::CustomMemoryStrategyInput

Input for creating a custom memory strategy.



3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3450

class MemoryStrategyInput < Struct.new(
  :semantic_memory_strategy,
  :summary_memory_strategy,
  :user_preference_memory_strategy,
  :custom_memory_strategy,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticMemoryStrategy < MemoryStrategyInput; end
  class SummaryMemoryStrategy < MemoryStrategyInput; end
  class UserPreferenceMemoryStrategy < MemoryStrategyInput; end
  class CustomMemoryStrategy < MemoryStrategyInput; end
  class Unknown < MemoryStrategyInput; end
end

#semantic_memory_strategyTypes::SemanticMemoryStrategyInput

Input for creating a semantic memory strategy.



3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3450

class MemoryStrategyInput < Struct.new(
  :semantic_memory_strategy,
  :summary_memory_strategy,
  :user_preference_memory_strategy,
  :custom_memory_strategy,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticMemoryStrategy < MemoryStrategyInput; end
  class SummaryMemoryStrategy < MemoryStrategyInput; end
  class UserPreferenceMemoryStrategy < MemoryStrategyInput; end
  class CustomMemoryStrategy < MemoryStrategyInput; end
  class Unknown < MemoryStrategyInput; end
end

#summary_memory_strategyTypes::SummaryMemoryStrategyInput

Input for creating a summary memory strategy.



3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3450

class MemoryStrategyInput < Struct.new(
  :semantic_memory_strategy,
  :summary_memory_strategy,
  :user_preference_memory_strategy,
  :custom_memory_strategy,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticMemoryStrategy < MemoryStrategyInput; end
  class SummaryMemoryStrategy < MemoryStrategyInput; end
  class UserPreferenceMemoryStrategy < MemoryStrategyInput; end
  class CustomMemoryStrategy < MemoryStrategyInput; end
  class Unknown < MemoryStrategyInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3450
3451
3452
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3450

def unknown
  @unknown
end

#user_preference_memory_strategyTypes::UserPreferenceMemoryStrategyInput

Input for creating a user preference memory strategy.



3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3450

class MemoryStrategyInput < Struct.new(
  :semantic_memory_strategy,
  :summary_memory_strategy,
  :user_preference_memory_strategy,
  :custom_memory_strategy,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SemanticMemoryStrategy < MemoryStrategyInput; end
  class SummaryMemoryStrategy < MemoryStrategyInput; end
  class UserPreferenceMemoryStrategy < MemoryStrategyInput; end
  class CustomMemoryStrategy < MemoryStrategyInput; end
  class Unknown < MemoryStrategyInput; end
end