Class: Aws::DataZone::Types::RuleTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::RuleTarget
- 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
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.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
16230 16231 16232 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16230 def unknown @unknown end |