Class: Aws::DataZone::Types::RuleTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::RuleTarget
- 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
Defined Under Namespace
Classes: DomainUnitTarget, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_unit_target ⇒ Types::DomainUnitTarget
The ID of the domain unit.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#domain_unit_target ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
13406 13407 13408 |
# File 'lib/aws-sdk-datazone/types.rb', line 13406 def unknown @unknown end |