Class: Aws::QuickSight::Types::SearchFlowsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::SearchFlowsFilter
- 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
-
#name ⇒ String
The name of the value that you want to use as a filter, for example
"Name": "DIRECT_QUICKSIGHT_SOLE_OWNER". -
#operator ⇒ String
The comparison operator that you want to use as a filter, for example
"Operator": "StringEquals". -
#value ⇒ String
The value of the named item, in this case
DIRECT_QUICKSIGHT_SOLE_OWNER, that you want to use as a filter, for example"Value".
Instance Attribute Details
#name ⇒ String
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.
33209 33210 33211 33212 33213 33214 33215 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33209 class SearchFlowsFilter < Struct.new( :name, :operator, :value) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The comparison operator that you want to use as a filter, for
example "Operator": "StringEquals". Valid values are
"StringEquals" and "StringLike".
33209 33210 33211 33212 33213 33214 33215 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33209 class SearchFlowsFilter < Struct.new( :name, :operator, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
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".
33209 33210 33211 33212 33213 33214 33215 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33209 class SearchFlowsFilter < Struct.new( :name, :operator, :value) SENSITIVE = [] include Aws::Structure end |