You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::QuickSight::Types::AnalysisSearchFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AnalysisSearchFilter
- Defined in:
- (unknown)
Overview
When passing AnalysisSearchFilter as input to an Aws::Client method, you can use a vanilla Hash:
{
operator: "StringEquals", # accepts StringEquals
name: "QUICKSIGHT_USER", # accepts QUICKSIGHT_USER
value: "String",
}
A filter that you apply when searching for one or more analyses.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the value that you want to use as a filter, for example
"Name": "QUICKSIGHT_USER"
. -
#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
QUICKSIGHT_USER
, 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": "QUICKSIGHT_USER"
.
Possible values:
- QUICKSIGHT_USER
#operator ⇒ String
The comparison operator that you want to use as a filter, for example
"Operator": "StringEquals"
.
Possible values:
- StringEquals
#value ⇒ String
The value of the named item, in this case QUICKSIGHT_USER
, that you
want to use as a filter, for example "Value"
. An example is
"arn:aws:quicksight:us-east-1:1:user/default/UserName1"
.