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



6543
6544
6545
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6543

def unknown
  @unknown
end

#v1Types::IntermediateTableAnalysisRulePolicyV1

The version 1 policy for the analysis rule.



6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6543

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

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