Class: Aws::CleanRooms::Types::WorkerComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::WorkerComputeConfiguration
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#number ⇒ Integer
The number of workers.
-
#type ⇒ String
The worker compute configuration type.
Instance Attribute Details
#number ⇒ Integer
The number of workers.
SQL queries support a minimum value of 2 and a maximum value of 400.
PySpark jobs support a minimum value of 4 and a maximum value of 128.
9625 9626 9627 9628 9629 9630 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 9625 class WorkerComputeConfiguration < Struct.new( :type, :number) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The worker compute configuration type.
9625 9626 9627 9628 9629 9630 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 9625 class WorkerComputeConfiguration < Struct.new( :type, :number) SENSITIVE = [] include Aws::Structure end |