Class: Aws::BedrockAgentCoreControl::Types::FilterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::FilterValue
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
FilterValue is a union - when making an API calls you must set exactly one of the members.
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
-
#boolean_value ⇒ Boolean
The boolean value for true/false filtering conditions.
-
#double_value ⇒ Float
The numeric value for numerical filtering and comparisons.
-
#string_value ⇒ String
The string value for text-based filtering.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#boolean_value ⇒ Boolean
The boolean value for true/false filtering conditions.
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_value ⇒ Float
The numeric value for numerical filtering and comparisons.
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_value ⇒ String
The string value for text-based filtering.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5951 5952 5953 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5951 def unknown @unknown end |