Class: Aws::CleanRooms::Types::IntermediateTableAnalysisRulePolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::IntermediateTableAnalysisRulePolicy
- 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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#v1 ⇒ Types::IntermediateTableAnalysisRulePolicyV1
The version 1 policy for the analysis rule.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
6543 6544 6545 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6543 def unknown @unknown end |
#v1 ⇒ Types::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 |