Class: Aws::CleanRooms::Types::ConfiguredTableAssociationAnalysisRulePolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ConfiguredTableAssociationAnalysisRulePolicy
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
ConfiguredTableAssociationAnalysisRulePolicy is a union - when making an API calls you must set exactly one of the members.
Note:
ConfiguredTableAssociationAnalysisRulePolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAssociationAnalysisRulePolicy corresponding to the set member.
Controls on the query specifications that can be run on an associated configured table.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#v1 ⇒ Types::ConfiguredTableAssociationAnalysisRulePolicyV1
The policy for the configured table association analysis rule.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
2364 2365 2366 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2364 def unknown @unknown end |
#v1 ⇒ Types::ConfiguredTableAssociationAnalysisRulePolicyV1
The policy for the configured table association analysis rule.
2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2364 class ConfiguredTableAssociationAnalysisRulePolicy < Struct.new( :v1, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class V1 < ConfiguredTableAssociationAnalysisRulePolicy; end class Unknown < ConfiguredTableAssociationAnalysisRulePolicy; end end |