Class: Aws::CleanRooms::Types::ComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ComputeConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/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.
The configuration of the compute resources for an analysis with the Spark analytics engine.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#worker ⇒ Types::WorkerComputeConfiguration
The worker configuration for the compute environment.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1617 1618 1619 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 1617 def unknown @unknown end |
#worker ⇒ Types::WorkerComputeConfiguration
The worker configuration for the compute environment.
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 1617 class ComputeConfiguration < Struct.new( :worker, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Worker < ComputeConfiguration; end class Unknown < ComputeConfiguration; end end |