Class: Aws::ECS::Types::RunTaskResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ECS::Types::RunTaskResponse
 
- 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 run. 
Instance Attribute Details
#failures ⇒ Array<Types::Failure>
Any failures associated with the call.
For information about how to address failures, see Service event messages and API failure reasons in the Amazon Elastic Container Service Developer Guide.
| 10464 10465 10466 10467 10468 10469 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10464 class RunTaskResponse < Struct.new( :tasks, :failures) SENSITIVE = [] include Aws::Structure end | 
#tasks ⇒ Array<Types::Task>
A full description of the tasks that were run. The tasks that were successfully placed on your cluster are described here.
| 10464 10465 10466 10467 10468 10469 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10464 class RunTaskResponse < Struct.new( :tasks, :failures) SENSITIVE = [] include Aws::Structure end |