Class: Aws::QuickSight::Types::GroupSearchFilter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#nameString

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`.

Returns:

  • (String)


17180
17181
17182
17183
17184
17185
17186
# File 'lib/aws-sdk-quicksight/types.rb', line 17180

class GroupSearchFilter < Struct.new(
  :operator,
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The comparison operator that you want to use as a filter, for example ‘“Operator”: “StartsWith”`. Currently, the only supported operator is `StartsWith`.

Returns:

  • (String)


17180
17181
17182
17183
17184
17185
17186
# File 'lib/aws-sdk-quicksight/types.rb', line 17180

class GroupSearchFilter < Struct.new(
  :operator,
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the named item, in this case ‘GROUP_NAME`, that you want to use as a filter.

Returns:

  • (String)


17180
17181
17182
17183
17184
17185
17186
# File 'lib/aws-sdk-quicksight/types.rb', line 17180

class GroupSearchFilter < Struct.new(
  :operator,
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end