Class: Aws::CleanRooms::Types::IntermediateTableComputeConfiguration

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

Instance Attribute Details

#query_compute_configurationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6608
6609
6610
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6608

def unknown
  @unknown
end