Class: Aws::QuickSight::Types::SearchFlowsFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb

Overview

A structure that contains the filter information when searching flows.

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": "DIRECT_QUICKSIGHT_SOLE_OWNER".

Valid values are defined as follows:

  • assetName: Any flows whose names have a substring match to this value will be returned.

  • assetDescription: Any flows whose descriptions have a substring match to this value will be returned.

  • DIRECT_QUICKSIGHT_SOLE_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as the only owner of the analysis are returned. Implicit permissions from folders or groups are not considered.

  • DIRECT_QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as one of the owners of the analyses are returned. Implicit permissions from folders or groups are not considered.

  • DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as one of the owners or viewers of the analyses are returned. Implicit permissions from folders or groups are not considered.

Returns:

  • (String)


31413
31414
31415
31416
31417
31418
31419
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31413

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

#operatorString

The comparison operator that you want to use as a filter, for example "Operator": "StringEquals". Valid values are "StringEquals" and "StringLike".

Returns:

  • (String)


31413
31414
31415
31416
31417
31418
31419
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31413

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

#valueString

The value of the named item, in this case DIRECT_QUICKSIGHT_SOLE_OWNER, that you want to use as a filter, for example "Value". An example is "arn:aws:quicksight:us-east-1:1:user/default/UserName1".

Returns:

  • (String)


31413
31414
31415
31416
31417
31418
31419
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 31413

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