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
6896 6897 6898 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6896 def unknown @unknown end |
#v1 ⇒ Types::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 |