Class: Aws::CleanRooms::Types::ConfiguredTableAnalysisRulePolicyV1
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ConfiguredTableAnalysisRulePolicyV1
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
ConfiguredTableAnalysisRulePolicyV1 is a union - when making an API calls you must set exactly one of the members.
ConfiguredTableAnalysisRulePolicyV1 is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAnalysisRulePolicyV1 corresponding to the set member.
Controls on the query specifications that can be run on a configured table.
Direct Known Subclasses
Defined Under Namespace
Classes: Aggregation, Custom, List, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggregation ⇒ Types::AnalysisRuleAggregation
Analysis rule type that enables only aggregation queries on a configured table.
-
#custom ⇒ Types::AnalysisRuleCustom
A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables.
-
#list ⇒ Types::AnalysisRuleList
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::AnalysisRuleAggregation
Analysis rule type that enables only aggregation queries on a configured table.
2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2525 class ConfiguredTableAnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < ConfiguredTableAnalysisRulePolicyV1; end class Aggregation < ConfiguredTableAnalysisRulePolicyV1; end class Custom < ConfiguredTableAnalysisRulePolicyV1; end class Unknown < ConfiguredTableAnalysisRulePolicyV1; end end |
#custom ⇒ Types::AnalysisRuleCustom
A type of analysis rule that enables the table owner to approve custom SQL queries on their configured tables. It supports differential privacy.
2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2525 class ConfiguredTableAnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < ConfiguredTableAnalysisRulePolicyV1; end class Aggregation < ConfiguredTableAnalysisRulePolicyV1; end class Custom < ConfiguredTableAnalysisRulePolicyV1; end class Unknown < ConfiguredTableAnalysisRulePolicyV1; end end |
#list ⇒ Types::AnalysisRuleList
Analysis rule type that enables only list queries on a configured table.
2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2525 class ConfiguredTableAnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < ConfiguredTableAnalysisRulePolicyV1; end class Aggregation < ConfiguredTableAnalysisRulePolicyV1; end class Custom < ConfiguredTableAnalysisRulePolicyV1; end class Unknown < ConfiguredTableAnalysisRulePolicyV1; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2525 2526 2527 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2525 def unknown @unknown end |