Class: Aws::CleanRooms::Types::ProtectedJobComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedJobComputeConfiguration
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#worker ⇒ Types::ProtectedJobWorkerComputeConfiguration
The worker configuration for the compute environment.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
7480 7481 7482 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7480 def unknown @unknown end |
#worker ⇒ Types::ProtectedJobWorkerComputeConfiguration
The worker configuration for the compute environment.
7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7480 class ProtectedJobComputeConfiguration < Struct.new( :worker, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Worker < ProtectedJobComputeConfiguration; end class Unknown < ProtectedJobComputeConfiguration; end end |