Class: Aws::CleanRooms::Types::WorkerComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::WorkerComputeConfiguration
- Includes:
- Structure
- Defined in:
- 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.
-
#properties ⇒ Types::WorkerComputeConfigurationProperties
The configuration properties for the worker compute environment.
-
#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.
9917 9918 9919 9920 9921 9922 9923 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9917 class WorkerComputeConfiguration < Struct.new( :type, :number, :properties) SENSITIVE = [] include Aws::Structure end |
#properties ⇒ Types::WorkerComputeConfigurationProperties
The configuration properties for the worker compute environment. These properties allow you to customize the compute settings for your Clean Rooms workloads.
9917 9918 9919 9920 9921 9922 9923 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9917 class WorkerComputeConfiguration < Struct.new( :type, :number, :properties) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The worker compute configuration type.
9917 9918 9919 9920 9921 9922 9923 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 9917 class WorkerComputeConfiguration < Struct.new( :type, :number, :properties) SENSITIVE = [] include Aws::Structure end |