Class: Aws::DataZone::Types::RowFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#andArray<Types::RowFilter>

The 'and' clause of the row filter.

Returns:



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

#expressionTypes::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

#orArray<Types::RowFilter>

The 'or' clause of the row filter.

Returns:



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



15989
15990
15991
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15989

def unknown
  @unknown
end