Class: Aws::DataZone::Types::RowFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::RowFilter
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
RowFilter is a union - when making an API calls you must set exactly one of the members.
Note:
RowFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RowFilter corresponding to the set member.
The row filter.
Direct Known Subclasses
And, Expression, Or, Unknown
Defined Under Namespace
Classes: And, Expression, Or, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#and ⇒ Array<Types::RowFilter>
The 'and' clause of the row filter.
-
#expression ⇒ Types::RowFilterExpression
The expression of the row filter.
-
#or ⇒ Array<Types::RowFilter>
The 'or' clause of the row filter.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#and ⇒ Array<Types::RowFilter>
The 'and' clause of the row filter.
15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15989 class RowFilter < Struct.new( :and, :expression, :or, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class And < RowFilter; end class Expression < RowFilter; end class Or < RowFilter; end class Unknown < RowFilter; end end |
#expression ⇒ Types::RowFilterExpression
The expression of the row filter.
15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15989 class RowFilter < Struct.new( :and, :expression, :or, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class And < RowFilter; end class Expression < RowFilter; end class Or < RowFilter; end class Unknown < RowFilter; end end |
#or ⇒ Array<Types::RowFilter>
The 'or' clause of the row filter.
15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15989 class RowFilter < Struct.new( :and, :expression, :or, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class And < RowFilter; end class Expression < RowFilter; end class Or < RowFilter; end class Unknown < RowFilter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
15989 15990 15991 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15989 def unknown @unknown end |