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
| 839 840 841 | # File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 839 def unknown @unknown end | 
#worker ⇒ Types::WorkerComputeConfiguration
The worker instances that will perform the compute work.
| 839 840 841 842 843 844 845 846 847 848 | # File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 839 class ComputeConfiguration < Struct.new( :worker, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Worker < ComputeConfiguration; end class Unknown < ComputeConfiguration; end end |