Class: Aws::CleanRooms::Types::ProtectedJobComputeConfiguration

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

Overview

Note:

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

Note:

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

The configuration of the compute resources for a PySpark job.

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



7756
7757
7758
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7756

def unknown
  @unknown
end

#workerTypes::ProtectedJobWorkerComputeConfiguration

The worker configuration for the compute environment.



7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7756

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

  class Worker < ProtectedJobComputeConfiguration; end
  class Unknown < ProtectedJobComputeConfiguration; end
end