Class: Aws::CleanRooms::Types::ConfiguredTableAssociationAnalysisRulePolicyV1
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ConfiguredTableAssociationAnalysisRulePolicyV1
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
ConfiguredTableAssociationAnalysisRulePolicyV1 is a union - when making an API calls you must set exactly one of the members.
ConfiguredTableAssociationAnalysisRulePolicyV1 is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAssociationAnalysisRulePolicyV1 corresponding to the set member.
Controls on the query specifications that can be run on an associated configured table.
Direct Known Subclasses
Defined Under Namespace
Classes: Aggregation, Custom, List, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggregation ⇒ Types::ConfiguredTableAssociationAnalysisRuleAggregation
Analysis rule type that enables only aggregation queries on a configured table.
-
#custom ⇒ Types::ConfiguredTableAssociationAnalysisRuleCustom
Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables.
-
#list ⇒ Types::ConfiguredTableAssociationAnalysisRuleList
Analysis rule type that enables only list queries on a configured table.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aggregation ⇒ Types::ConfiguredTableAssociationAnalysisRuleAggregation
Analysis rule type that enables only aggregation queries on a configured table.
2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2588 class ConfiguredTableAssociationAnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1; end end |
#custom ⇒ Types::ConfiguredTableAssociationAnalysisRuleCustom
Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables. It supports differential privacy.
2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2588 class ConfiguredTableAssociationAnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1; end end |
#list ⇒ Types::ConfiguredTableAssociationAnalysisRuleList
Analysis rule type that enables only list queries on a configured table.
2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2588 class ConfiguredTableAssociationAnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1; end class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2588 2589 2590 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2588 def unknown @unknown end |