Class: Aws::BedrockAgentCoreControl::Types::ReflectionConfiguration

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

Overview

Note:

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

Contains reflection configuration information for a memory strategy.

Defined Under Namespace

Classes: CustomReflectionConfiguration, EpisodicReflectionConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_reflection_configurationTypes::CustomReflectionConfiguration

The configuration for a custom reflection strategy.



7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7868

class ReflectionConfiguration < Struct.new(
  :custom_reflection_configuration,
  :episodic_reflection_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomReflectionConfiguration < ReflectionConfiguration; end
  class EpisodicReflectionConfiguration < ReflectionConfiguration; end
  class Unknown < ReflectionConfiguration; end
end

#episodic_reflection_configurationTypes::EpisodicReflectionConfiguration

The configuration for the episodic reflection strategy.



7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7868

class ReflectionConfiguration < Struct.new(
  :custom_reflection_configuration,
  :episodic_reflection_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomReflectionConfiguration < ReflectionConfiguration; end
  class EpisodicReflectionConfiguration < ReflectionConfiguration; end
  class Unknown < ReflectionConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7868
7869
7870
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7868

def unknown
  @unknown
end