Class: Aws::DataZone::Types::MatchClause

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb

Overview

Note:

MatchClause is a union - when making an API calls you must set exactly one of the members.

A clause to match a query pattern

Direct Known Subclasses

EntityPattern, RelationPattern, Unknown

Defined Under Namespace

Classes: EntityPattern, RelationPattern, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#entity_patternTypes::EntityPattern

The pattern describing the entities for the query to traverse.



15487
15488
15489
15490
15491
15492
15493
15494
15495
15496
15497
15498
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15487

class MatchClause < Struct.new(
  :relation_pattern,
  :entity_pattern,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class RelationPattern < MatchClause; end
  class EntityPattern < MatchClause; end
  class Unknown < MatchClause; end
end

#relation_patternTypes::RelationPattern

The pattern describing the query's relational traversal.



15487
15488
15489
15490
15491
15492
15493
15494
15495
15496
15497
15498
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15487

class MatchClause < Struct.new(
  :relation_pattern,
  :entity_pattern,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class RelationPattern < MatchClause; end
  class EntityPattern < MatchClause; end
  class Unknown < MatchClause; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



15487
15488
15489
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15487

def unknown
  @unknown
end