Class: Aws::ECS::Types::StartTaskResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ECS::Types::StartTaskResponse
 
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #failures  ⇒ Array<Types::Failure> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Any failures associated with the call. 
- 
  
    
      #tasks  ⇒ Array<Types::Task> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A full description of the tasks that were started. 
Instance Attribute Details
#failures ⇒ Array<Types::Failure>
Any failures associated with the call.
| 12508 12509 12510 12511 12512 12513 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 12508 class StartTaskResponse < Struct.new( :tasks, :failures) SENSITIVE = [] include Aws::Structure end | 
#tasks ⇒ Array<Types::Task>
A full description of the tasks that were started. Each task that was successfully placed on your container instances is described.
| 12508 12509 12510 12511 12512 12513 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 12508 class StartTaskResponse < Struct.new( :tasks, :failures) SENSITIVE = [] include Aws::Structure end |