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

Inherits:
Struct
  • Object
show all
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

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)


16451
16452
16453
16454
16455
16456
16457
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 16451

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)


16451
16452
16453
16454
16455
16456
16457
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 16451

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)


16451
16452
16453
16454
16455
16456
16457
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 16451

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