Class: Aws::CleanRooms::Types::ConfiguredTableAnalysisRulePolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ConfiguredTableAnalysisRulePolicy
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
ConfiguredTableAnalysisRulePolicy is a union - when making an API calls you must set exactly one of the members.
Note:
ConfiguredTableAnalysisRulePolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAnalysisRulePolicy corresponding to the set member.
Controls on the query specifications that can be run on a configured table.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#v1 ⇒ Types::ConfiguredTableAnalysisRulePolicyV1
Controls on the query specifications that can be run on a configured table.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1919 1920 1921 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1919 def unknown @unknown end |
#v1 ⇒ Types::ConfiguredTableAnalysisRulePolicyV1
Controls on the query specifications that can be run on a configured table.
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1919 class ConfiguredTableAnalysisRulePolicy < Struct.new( :v1, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class V1 < ConfiguredTableAnalysisRulePolicy; end class Unknown < ConfiguredTableAnalysisRulePolicy; end end |