Class: Aws::CleanRooms::Types::IntermediateTableComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::IntermediateTableComputeConfiguration
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
IntermediateTableComputeConfiguration is a union - when making an API calls you must set exactly one of the members.
Contains the compute configuration for an intermediate table population operation.
Defined Under Namespace
Classes: QueryComputeConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#query_compute_configuration ⇒ Types::WorkerComputeConfiguration
The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#query_compute_configuration ⇒ Types::WorkerComputeConfiguration
The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.
6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6833 class IntermediateTableComputeConfiguration < Struct.new( :query_compute_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueryComputeConfiguration < IntermediateTableComputeConfiguration; end class Unknown < IntermediateTableComputeConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6833 6834 6835 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6833 def unknown @unknown end |