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)


9649
9650
9651
9652
9653
9654
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 9649

class WorkerComputeConfiguration < Struct.new(
  :type,
  :number)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The worker compute configuration type.

Returns:

  • (String)


9649
9650
9651
9652
9653
9654
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 9649

class WorkerComputeConfiguration < Struct.new(
  :type,
  :number)
  SENSITIVE = []
  include Aws::Structure
end