Class: Aws::BedrockAgentCoreControl::Types::CustomReflectionConfiguration

Inherits:
Struct
  • Object
show all
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

EpisodicReflectionOverride, Unknown

Defined Under Namespace

Classes: EpisodicReflectionOverride, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#episodic_reflection_overrideTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2680
2681
2682
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 2680

def unknown
  @unknown
end