Class: Aws::BedrockAgentCoreControl::Types::ReflectionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::ReflectionConfiguration
- 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.
Direct Known Subclasses
CustomReflectionConfiguration, EpisodicReflectionConfiguration, Unknown
Defined Under Namespace
Classes: CustomReflectionConfiguration, EpisodicReflectionConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_reflection_configuration ⇒ Types::CustomReflectionConfiguration
The configuration for a custom reflection strategy.
-
#episodic_reflection_configuration ⇒ Types::EpisodicReflectionConfiguration
The configuration for the episodic reflection strategy.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#custom_reflection_configuration ⇒ Types::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_configuration ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
7868 7869 7870 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7868 def unknown @unknown end |