Class: Aws::CleanRooms::Types::QueryConstraint

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-cleanrooms/types.rb

Overview

Note:

QueryConstraint is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of QueryConstraint corresponding to the set member.

Provides any necessary query constraint information.

Direct Known Subclasses

RequireOverlap, Unknown

Defined Under Namespace

Classes: RequireOverlap, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#require_overlapTypes::QueryConstraintRequireOverlap

An array of column names that specifies which columns are required in the JOIN statement.



6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6787

class QueryConstraint < Struct.new(
  :require_overlap,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class RequireOverlap < QueryConstraint; end
  class Unknown < QueryConstraint; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6787
6788
6789
# File 'lib/aws-sdk-cleanrooms/types.rb', line 6787

def unknown
  @unknown
end