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.
34865 34866 34867 34868 34869 34870 34871 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 34865 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.
34865 34866 34867 34868 34869 34870 34871 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 34865 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
.
34865 34866 34867 34868 34869 34870 34871 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 34865 class TopicNullFilter < Struct.new( :null_filter_type, :constant, :inverse) SENSITIVE = [:constant] include Aws::Structure end |