Class: Aws::QuickSight::Types::GroupSearchFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::GroupSearchFilter
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
A GroupSearchFilter
object that you want to apply to your search.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the value that you want to use as a filter, for example
"Name": "GROUP_NAME"
. -
#operator ⇒ String
The comparison operator that you want to use as a filter, for example
"Operator": "StartsWith"
. -
#value ⇒ String
The value of the named item, in this case
GROUP_NAME
, that you want to use as a filter.
Instance Attribute Details
#name ⇒ String
The name of the value that you want to use as a filter, for example
"Name": "GROUP_NAME"
. Currently, the only supported name is
GROUP_NAME
.
17375 17376 17377 17378 17379 17380 17381 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 17375 class GroupSearchFilter < Struct.new( :operator, :name, :value) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The comparison operator that you want to use as a filter, for
example "Operator": "StartsWith"
. Currently, the only supported
operator is StartsWith
.
17375 17376 17377 17378 17379 17380 17381 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 17375 class GroupSearchFilter < Struct.new( :operator, :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the named item, in this case GROUP_NAME
, that you
want to use as a filter.
17375 17376 17377 17378 17379 17380 17381 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 17375 class GroupSearchFilter < Struct.new( :operator, :name, :value) SENSITIVE = [] include Aws::Structure end |