Class: Aws::CleanRooms::Types::IntermediateTableAnalysisRulePolicy

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb

Overview

Note:

IntermediateTableAnalysisRulePolicy is a union - when making an API calls you must set exactly one of the members.

Note:

IntermediateTableAnalysisRulePolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IntermediateTableAnalysisRulePolicy corresponding to the set member.

Contains the policy for an intermediate table analysis rule.

Defined Under Namespace

Classes: Unknown, V1

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6896
6897
6898
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6896

def unknown
  @unknown
end

#v1Types::IntermediateTableAnalysisRulePolicyV1

The version 1 policy for the analysis rule.



6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6896

class IntermediateTableAnalysisRulePolicy < Struct.new(
  :v1,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class V1 < IntermediateTableAnalysisRulePolicy; end
  class Unknown < IntermediateTableAnalysisRulePolicy; end
end