Class: Aws::CleanRoomsML::Types::ComputeConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb

Overview

Note:

ComputeConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

ComputeConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ComputeConfiguration corresponding to the set member.

Provides configuration information for the instances that will perform the compute work.

Direct Known Subclasses

Unknown, Worker

Defined Under Namespace

Classes: Unknown, Worker

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



735
736
737
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 735

def unknown
  @unknown
end

#workerTypes::WorkerComputeConfiguration

The worker instances that will perform the compute work.



735
736
737
738
739
740
741
742
743
744
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 735

class ComputeConfiguration < Struct.new(
  :worker,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Worker < ComputeConfiguration; end
  class Unknown < ComputeConfiguration; end
end