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.
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.
6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6608 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
6608 6609 6610 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6608 def unknown @unknown end |