Class: Aws::ECS::Types::DeleteTaskDefinitionsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECS::Types::DeleteTaskDefinitionsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecs/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #task_definitions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ‘family` and `revision` (`family:revision`) or full Amazon Resource Name (ARN) of the task definition to delete.
 
Instance Attribute Details
#task_definitions ⇒ Array<String>
The ‘family` and `revision` (`family:revision`) or full Amazon Resource Name (ARN) of the task definition to delete. You must specify a `revision`.
You can specify up to 10 task definitions as a comma separated list.
      3341 3342 3343 3344 3345  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 3341 class DeleteTaskDefinitionsRequest < Struct.new( :task_definitions) SENSITIVE = [] include Aws::Structure end  |