Class: Aws::BedrockAgentCoreControl::Types::CustomReflectionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CustomReflectionConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
CustomReflectionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomReflectionConfiguration corresponding to the set member.
Contains configurations for a custom reflection strategy.
Direct Known Subclasses
Defined Under Namespace
Classes: EpisodicReflectionOverride, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#episodic_reflection_override ⇒ Types::EpisodicReflectionOverride
The configuration for a reflection strategy to override the default one.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#episodic_reflection_override ⇒ Types::EpisodicReflectionOverride
The configuration for a reflection strategy to override the default one.
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2680 class CustomReflectionConfiguration < Struct.new( :episodic_reflection_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class EpisodicReflectionOverride < CustomReflectionConfiguration; end class Unknown < CustomReflectionConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2680 2681 2682 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2680 def unknown @unknown end |