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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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.



16230
16231
16232
16233
16234
16235
16236
16237
16238
16239
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16230

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



16230
16231
16232
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16230

def unknown
  @unknown
end