Class: Aws::CleanRooms::Types::WorkerComputeConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#numberInteger

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.

Returns:

  • (Integer)


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

#typeString

The worker compute configuration type.

Returns:

  • (String)


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