Class: Aws::CleanRoomsML::Types::ComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::ComputeConfiguration
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#worker ⇒ Types::WorkerComputeConfiguration
The worker instances that will perform the compute work.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
735 736 737 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 735 def unknown @unknown end |
#worker ⇒ Types::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 |