Class: Aws::BedrockAgentCoreControl::Types::CustomConfigurationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CustomConfigurationInput
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
CustomConfigurationInput is a union - when making an API calls you must set exactly one of the members.
Input for custom configuration of a memory strategy.
Direct Known Subclasses
SemanticOverride, SummaryOverride, Unknown, UserPreferenceOverride
Defined Under Namespace
Classes: SemanticOverride, SummaryOverride, Unknown, UserPreferenceOverride
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#semantic_override ⇒ Types::SemanticOverrideConfigurationInput
The semantic override configuration for a custom memory strategy.
-
#summary_override ⇒ Types::SummaryOverrideConfigurationInput
The summary override configuration for a custom memory strategy.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user_preference_override ⇒ Types::UserPreferenceOverrideConfigurationInput
The user preference override configuration for a custom memory strategy.
Instance Attribute Details
#semantic_override ⇒ Types::SemanticOverrideConfigurationInput
The semantic override configuration for a custom memory strategy.
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314 class CustomConfigurationInput < Struct.new( :semantic_override, :summary_override, :user_preference_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticOverride < CustomConfigurationInput; end class SummaryOverride < CustomConfigurationInput; end class UserPreferenceOverride < CustomConfigurationInput; end class Unknown < CustomConfigurationInput; end end |
#summary_override ⇒ Types::SummaryOverrideConfigurationInput
The summary override configuration for a custom memory strategy.
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314 class CustomConfigurationInput < Struct.new( :semantic_override, :summary_override, :user_preference_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticOverride < CustomConfigurationInput; end class SummaryOverride < CustomConfigurationInput; end class UserPreferenceOverride < CustomConfigurationInput; end class Unknown < CustomConfigurationInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1314 1315 1316 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314 def unknown @unknown end |
#user_preference_override ⇒ Types::UserPreferenceOverrideConfigurationInput
The user preference override configuration for a custom memory strategy.
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1314 class CustomConfigurationInput < Struct.new( :semantic_override, :summary_override, :user_preference_override, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SemanticOverride < CustomConfigurationInput; end class SummaryOverride < CustomConfigurationInput; end class UserPreferenceOverride < CustomConfigurationInput; end class Unknown < CustomConfigurationInput; end end |