Class: Aws::DataZone::Types::RuleTarget

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

Overview

Note:

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

Note:

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

The target of the rule.

Direct Known Subclasses

DomainUnitTarget, Unknown

Defined Under Namespace

Classes: DomainUnitTarget, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#domain_unit_targetTypes::DomainUnitTarget

The ID of the domain unit.



13406
13407
13408
13409
13410
13411
13412
13413
13414
13415
# File 'lib/aws-sdk-datazone/types.rb', line 13406

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

  class DomainUnitTarget < RuleTarget; end
  class Unknown < RuleTarget; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



13406
13407
13408
# File 'lib/aws-sdk-datazone/types.rb', line 13406

def unknown
  @unknown
end