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)


19072
19073
19074
19075
19076
19077
19078
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 19072

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)


19072
19073
19074
19075
19076
19077
19078
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 19072

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)


19072
19073
19074
19075
19076
19077
19078
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 19072

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