Class: Aws::ECS::Types::DeleteTaskDefinitionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::DeleteTaskDefinitionsRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#task_definitions ⇒ Array<String>
The
family
andrevision
(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.
3373 3374 3375 3376 3377 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 3373 class DeleteTaskDefinitionsRequest < Struct.new( :task_definitions) SENSITIVE = [] include Aws::Structure end |