Class: Aws::CleanRooms::Types::AnalysisRulePolicyV1
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::AnalysisRulePolicyV1
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
AnalysisRulePolicyV1 is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AnalysisRulePolicyV1 corresponding to the set member.
Controls on the query specifications that can be run on configured table.
Direct Known Subclasses
Defined Under Namespace
Classes: Aggregation, Custom, IdMappingTable, 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
Analysis rule type that enables custom SQL queries on a configured table.
-
#id_mapping_table ⇒ Types::AnalysisRuleIdMappingTable
The ID mapping table.
-
#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.
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 363 class AnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :id_mapping_table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < AnalysisRulePolicyV1; end class Aggregation < AnalysisRulePolicyV1; end class Custom < AnalysisRulePolicyV1; end class IdMappingTable < AnalysisRulePolicyV1; end class Unknown < AnalysisRulePolicyV1; end end |
#custom ⇒ Types::AnalysisRuleCustom
Analysis rule type that enables custom SQL queries on a configured table.
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 363 class AnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :id_mapping_table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < AnalysisRulePolicyV1; end class Aggregation < AnalysisRulePolicyV1; end class Custom < AnalysisRulePolicyV1; end class IdMappingTable < AnalysisRulePolicyV1; end class Unknown < AnalysisRulePolicyV1; end end |
#id_mapping_table ⇒ Types::AnalysisRuleIdMappingTable
The ID mapping table.
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 363 class AnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :id_mapping_table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < AnalysisRulePolicyV1; end class Aggregation < AnalysisRulePolicyV1; end class Custom < AnalysisRulePolicyV1; end class IdMappingTable < AnalysisRulePolicyV1; end class Unknown < AnalysisRulePolicyV1; end end |
#list ⇒ Types::AnalysisRuleList
Analysis rule type that enables only list queries on a configured table.
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 363 class AnalysisRulePolicyV1 < Struct.new( :list, :aggregation, :custom, :id_mapping_table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class List < AnalysisRulePolicyV1; end class Aggregation < AnalysisRulePolicyV1; end class Custom < AnalysisRulePolicyV1; end class IdMappingTable < AnalysisRulePolicyV1; end class Unknown < AnalysisRulePolicyV1; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
363 364 365 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 363 def unknown @unknown end |