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.

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:



18333
18334
18335
18336
18337
18338
18339
18340
18341
18342
18343
18344
18345
18346
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18333

class RowFilter < Struct.new(
  :expression,
  :and,
  :or,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Expression < RowFilter; end
  class And < RowFilter; end
  class Or < RowFilter; end
  class Unknown < RowFilter; end
end

#expressionTypes::RowFilterExpression

The expression of the row filter.



18333
18334
18335
18336
18337
18338
18339
18340
18341
18342
18343
18344
18345
18346
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18333

class RowFilter < Struct.new(
  :expression,
  :and,
  :or,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Expression < RowFilter; end
  class And < RowFilter; end
  class Or < RowFilter; end
  class Unknown < RowFilter; end
end

#orArray<Types::RowFilter>

The 'or' clause of the row filter.

Returns:



18333
18334
18335
18336
18337
18338
18339
18340
18341
18342
18343
18344
18345
18346
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18333

class RowFilter < Struct.new(
  :expression,
  :and,
  :or,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Expression < RowFilter; end
  class And < 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



18333
18334
18335
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 18333

def unknown
  @unknown
end