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.
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.
13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13619 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.
13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13619 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
13619 13620 13621 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13619 def unknown @unknown end |