Class: Aws::DataZone::Types::RuleDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::RuleDetail
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
Note:
RuleDetail is a union - when making an API calls you must set exactly one of the members.
Note:
RuleDetail is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleDetail corresponding to the set member.
The details of a rule.
Direct Known Subclasses
Defined Under Namespace
Classes: MetadataFormEnforcementDetail, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metadata_form_enforcement_detail ⇒ Types::MetadataFormEnforcementDetail
The enforcement detail of the metadata form.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#metadata_form_enforcement_detail ⇒ Types::MetadataFormEnforcementDetail
The enforcement detail of the metadata form.
13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 |
# File 'lib/aws-sdk-datazone/types.rb', line 13300 class RuleDetail < Struct.new( :metadata_form_enforcement_detail, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class MetadataFormEnforcementDetail < RuleDetail; end class Unknown < RuleDetail; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
13300 13301 13302 |
# File 'lib/aws-sdk-datazone/types.rb', line 13300 def unknown @unknown end |