Class: Aws::ECS::Types::ConflictException
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ConflictException
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The RunTask
request could not be processed due to conflicts. The
provided clientToken
is already in use with a different RunTask
request. The resourceIds
are the existing task ARNs which are
already associated with the clientToken
.
To fix this issue:
Run
RunTask
with a uniqueclientToken
.Run
RunTask
with theclientToken
and the original set of parameters
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_ids ⇒ Array<String>
The existing task ARNs which are already associated with the
clientToken
.
Instance Attribute Details
#resource_ids ⇒ Array<String>
The existing task ARNs which are already associated with the
clientToken
.
925 926 927 928 929 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 925 class ConflictException < Struct.new( :resource_ids) SENSITIVE = [] include Aws::Structure end |