Class: Aws::BedrockAgentCore::Types::LeftExpression

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb

Overview

Note:

LeftExpression is a union - when making an API calls you must set exactly one of the members.

Left expression of the event metadata filter.

Defined Under Namespace

Classes: MetadataKey, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metadata_keyString

Key associated with the metadata in an event.

Returns:

  • (String)


2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2786

class LeftExpression < Struct.new(
  :metadata_key,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class MetadataKey < LeftExpression; end
  class Unknown < LeftExpression; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2786
2787
2788
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2786

def unknown
  @unknown
end