Class: Aws::BedrockAgentCoreControl::Types::FilterValue

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

Overview

Note:

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

Note:

FilterValue is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FilterValue corresponding to the set member.

The value used in filter comparisons, supporting different data types for flexible filtering criteria.

Defined Under Namespace

Classes: BooleanValue, DoubleValue, StringValue, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#boolean_valueBoolean

The boolean value for true/false filtering conditions.

Returns:

  • (Boolean)


5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5951

class FilterValue < Struct.new(
  :string_value,
  :double_value,
  :boolean_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class StringValue < FilterValue; end
  class DoubleValue < FilterValue; end
  class BooleanValue < FilterValue; end
  class Unknown < FilterValue; end
end

#double_valueFloat

The numeric value for numerical filtering and comparisons.

Returns:

  • (Float)


5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5951

class FilterValue < Struct.new(
  :string_value,
  :double_value,
  :boolean_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class StringValue < FilterValue; end
  class DoubleValue < FilterValue; end
  class BooleanValue < FilterValue; end
  class Unknown < FilterValue; end
end

#string_valueString

The string value for text-based filtering.

Returns:

  • (String)


5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5951

class FilterValue < Struct.new(
  :string_value,
  :double_value,
  :boolean_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class StringValue < FilterValue; end
  class DoubleValue < FilterValue; end
  class BooleanValue < FilterValue; end
  class Unknown < FilterValue; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5951
5952
5953
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5951

def unknown
  @unknown
end