Class: Aws::QuickSight::Types::TopicNullFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::TopicNullFilter
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The structure that represents a null filter.
Constant Summary collapse
- SENSITIVE =
[:constant]
Instance Attribute Summary collapse
-
#constant ⇒ Types::TopicSingularFilterConstant
A structure that represents a singular filter constant, used in filters to specify a single value to match against.
-
#inverse ⇒ Boolean
A Boolean value that indicates if the filter is inverse.
-
#null_filter_type ⇒ String
The type of the null filter.
Instance Attribute Details
#constant ⇒ Types::TopicSingularFilterConstant
A structure that represents a singular filter constant, used in filters to specify a single value to match against.
37790 37791 37792 37793 37794 37795 37796 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 37790 class TopicNullFilter < Struct.new( :null_filter_type, :constant, :inverse) SENSITIVE = [:constant] include Aws::Structure end |
#inverse ⇒ Boolean
A Boolean value that indicates if the filter is inverse.
37790 37791 37792 37793 37794 37795 37796 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 37790 class TopicNullFilter < Struct.new( :null_filter_type, :constant, :inverse) SENSITIVE = [:constant] include Aws::Structure end |
#null_filter_type ⇒ String
The type of the null filter. Valid values for this type are
NULLS_ONLY, NON_NULLS_ONLY, and ALL_VALUES.
37790 37791 37792 37793 37794 37795 37796 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 37790 class TopicNullFilter < Struct.new( :null_filter_type, :constant, :inverse) SENSITIVE = [:constant] include Aws::Structure end |