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.
3432 3433 3434 3435 3436 |
# File 'lib/aws-sdk-ecs/types.rb', line 3432 class DeleteTaskDefinitionsRequest < Struct.new( :task_definitions) SENSITIVE = [] include Aws::Structure end |