Class: Aws::DataZone::Types::RuleDetail

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

Defined Under Namespace

Classes: GlossaryTermEnforcementDetail, MetadataFormEnforcementDetail, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#glossary_term_enforcement_detailTypes::GlossaryTermEnforcementDetail

The enforcement details of a glossary term that's part of the metadata rule.



17936
17937
17938
17939
17940
17941
17942
17943
17944
17945
17946
17947
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17936

class RuleDetail < Struct.new(
  :glossary_term_enforcement_detail,
  :metadata_form_enforcement_detail,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GlossaryTermEnforcementDetail < RuleDetail; end
  class MetadataFormEnforcementDetail < RuleDetail; end
  class Unknown < RuleDetail; end
end

#metadata_form_enforcement_detailTypes::MetadataFormEnforcementDetail

The enforcement detail of the metadata form.



17936
17937
17938
17939
17940
17941
17942
17943
17944
17945
17946
17947
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17936

class RuleDetail < Struct.new(
  :glossary_term_enforcement_detail,
  :metadata_form_enforcement_detail,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GlossaryTermEnforcementDetail < RuleDetail; end
  class MetadataFormEnforcementDetail < RuleDetail; end
  class Unknown < RuleDetail; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



17936
17937
17938
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17936

def unknown
  @unknown
end